| Name | Description |
---|
  | SelectManyR, C, TResult(DataFrameR, C, FuncDataFrameRowR, C, IEnumerableTResult) |
Projects each row of a data frame into a value.
|
  | SelectManyR, C, TResult(DataFrameR, C, FuncDataFrameRowR, C, Int32, IEnumerableTResult) |
Projects each row of a data frame into a sequence of values,
flattens all the sequences into one sequence.
|
  | SelectManyT, TResult(VectorT, FuncT, IEnumerableTResult) |
Projects each element of a vector to a vector and flattens the resulting
vectors into one vector.
|
  | SelectManyT, TResult(VectorT, FuncT, Int32, IEnumerableTResult) |
Projects each element of a vector to a vector incorporating the element's index
and flattens the resulting vectors into one vector.
|
  | SelectManyR, C, TCollection, TResult(DataFrameR, C, FuncDataFrameRowR, C, IEnumerableTCollection, FuncDataFrameRowR, C, TCollection, TResult) |
Projects each row of a data frame into a sequence of values,
flattens all the sequences into one sequence,
and invokes a selector function on each element of the flattened sequence.
|
  | SelectManyR, C, TCollection, TResult(DataFrameR, C, FuncDataFrameRowR, C, Int32, IEnumerableTCollection, FuncDataFrameRowR, C, TCollection, TResult) |
Projects each row of a data frame into a sequence of values,
flattens all the sequences into one sequence,
and invokes a selector function on each element of the flattened sequence.
The row index is used in the logic of the projection that produces the intermediate sequence.
|
  | SelectManyT, TCollection, TResult(VectorT, FuncT, IEnumerableTCollection, FuncT, TCollection, TResult) |
Projects each element of a vector to a vector
and flattens the resulting vectors into one vector,
and applies a selector function to each element of the flattened vector.
|
  | SelectManyT, TCollection, TResult(VectorT, FuncT, Int32, IEnumerableTCollection, FuncT, TCollection, TResult) |
Projects each element of a vector to a vector incorporating the element's index
and flattens the resulting vectors into one vector,
and applies a selector function to each element of the flattened vector.
|