A query operator that determines whether all elements selected so far satisfies a condition.
'T -> bool
bool
A query operator that selects a value for each element selected so far and returns the average of these values.
'T -> ^Value
^Value
A query operator that selects a nullable value for each element selected so far and returns the average of these values. If any nullable does not have a value, it is ignored.
'T -> Nullable<^Value>
Nullable<^Value>
A query operator that determines whether the selected elements contains a specified element.
'T
bool
A query operator that returns the number of selected elements.
int
A query operator that selects distinct elements from the elements selected so far.
QuerySource<'T, 'Q>
A query operator that selects the single, specific element selected so far
'T
A query operator that selects the single, specific element of those selected so far, or a default value if that element is not found.
'T
A query operator that determines whether any element selected so far satisfies a condition.
'T -> bool
bool
A query operator that selects the first element selected so far that satisfies a specified condition.
'T -> bool
'T
A method used to support the F# query syntax. Projects each element of a sequence to another sequence and combines the resulting sequences into one sequence.
QuerySource<'T, 'Q>
'T -> QuerySource<'Result, 'Q2>
QuerySource<'Result, 'Q>
A query operator that groups the elements selected so far according to a specified key selector.
'T -> 'Key
QuerySource<IGrouping<'Key, 'T>, 'Q>
A query operator that correlates two sets of selected values based on matching keys and groups the results. Normal usage is 'groupJoin y in elements2 on (key1 = key2) into group'.
QuerySource<'Inner, 'Q>
'Outer -> 'Key
'Inner -> 'Key
'Outer -> 'Inner seq -> 'Result
QuerySource<'Result, 'Q>
A query operator that selects a value for each element selected so far and groups the elements by the given key.
'T -> 'Value
'T -> 'Key
QuerySource<IGrouping<'Key, 'Value>, 'Q>
A query operator that selects the first element from those selected so far.
'T
A query operator that selects the first element of those selected so far, or a default value if the sequence contains no elements.
'T
A query operator that correlates two sets of selected values based on matching keys. Normal usage is 'join y in elements2 on (key1 = key2)'.
QuerySource<'Inner, 'Q>
'Outer -> 'Key
'Inner -> 'Key
'Outer -> 'Inner -> 'Result
QuerySource<'Result, 'Q>
A query operator that selects the last element of those selected so far.
'T
A query operator that selects the last element of those selected so far, or a default value if no element is found.
'T
A query operator that correlates two sets of selected values based on matching keys and groups the results. If any group is empty, a group with a single default value is used instead. Normal usage is 'leftOuterJoin y in elements2 on (key1 = key2) into group'.
QuerySource<'Inner, 'Q>
'Outer -> 'Key
'Inner -> 'Key
'Outer -> 'Inner seq -> 'Result
QuerySource<'Result, 'Q>
A query operator that selects a value for each element selected so far and returns the maximum resulting value.
'T -> 'Value
'Value
A query operator that selects a nullable value for each element selected so far and returns the maximum of these values. If any nullable does not have a value, it is ignored.
'T -> Nullable<'Value>
Nullable<'Value>
A query operator that selects a value for each element selected so far and returns the minimum resulting value.
'T -> 'Value
'Value
A query operator that selects a nullable value for each element selected so far and returns the minimum of these values. If any nullable does not have a value, it is ignored.
'T -> Nullable<'Value>
Nullable<'Value>
A query operator that selects the element at a specified index amongst those selected so far.
int
'T
A method used to support the F# query syntax. Indicates that the query should be passed as a quotation to the Run method.
Expr<'T>
Expr<'T>
A method used to support the F# query syntax. Runs the given quotation as a query using LINQ IQueryable rules.
Expr<QuerySource<'T, IQueryable>>
IQueryable<'T>
A query operator that projects each of the elements selected so far.
'T -> 'Result
QuerySource<'Result, 'Q>
A query operator that bypasses a specified number of the elements selected so far and selects the remaining elements.
int
QuerySource<'T, 'Q>
A query operator that bypasses elements in a sequence as long as a specified condition is true and then selects the remaining elements.
'T -> bool
QuerySource<'T, 'Q>
A query operator that sorts the elements selected so far in ascending order by the given sorting key.
'T -> 'Key
QuerySource<'T, 'Q>
A query operator that sorts the elements selected so far in descending order by the given sorting key.
'T -> 'Key
QuerySource<'T, 'Q>
A query operator that sorts the elements selected so far in ascending order by the given nullable sorting key.
'T -> Nullable<'Key>
QuerySource<'T, 'Q>
A query operator that sorts the elements selected so far in descending order by the given nullable sorting key.
'T -> Nullable<'Key>
QuerySource<'T, 'Q>
A method used to support the F# query syntax. Inputs to queries are implicitly wrapped by a call to one of the overloads of this method.
IEnumerable<'T>
QuerySource<'T, IEnumerable>
A method used to support the F# query syntax. Inputs to queries are implicitly wrapped by a call to one of the overloads of this method.
IQueryable<'T>
QuerySource<'T, 'Q>
A query operator that selects a value for each element selected so far and returns the sum of these values.
'T -> ^Value
^Value
A query operator that selects a nullable value for each element selected so far and returns the sum of these values. If any nullable does not have a value, it is ignored.
'T -> Nullable<^Value>
Nullable<^Value>
A query operator that selects a specified number of contiguous elements from those selected so far.
int
QuerySource<'T, 'Q>
A query operator that selects elements from a sequence as long as a specified condition is true, and then skips the remaining elements.
'T -> bool
QuerySource<'T, 'Q>
A query operator that performs a subsequent ordering of the elements selected so far in ascending order by the given sorting key. This operator may only be used immediately after a 'sortBy', 'sortByDescending', 'thenBy' or 'thenByDescending', or their nullable variants.
'T -> 'Key
QuerySource<'T, 'Q>
A query operator that performs a subsequent ordering of the elements selected so far in descending order by the given sorting key. This operator may only be used immediately after a 'sortBy', 'sortByDescending', 'thenBy' or 'thenByDescending', or their nullable variants.
'T -> 'Key
QuerySource<'T, 'Q>
A query operator that performs a subsequent ordering of the elements selected so far in ascending order by the given nullable sorting key. This operator may only be used immediately after a 'sortBy', 'sortByDescending', 'thenBy' or 'thenByDescending', or their nullable variants.
'T -> Nullable<'Key>
QuerySource<'T, 'Q>
A query operator that performs a subsequent ordering of the elements selected so far in descending order by the given nullable sorting key. This operator may only be used immediately after a 'sortBy', 'sortByDescending', 'thenBy' or 'thenByDescending', or their nullable variants.
'T -> Nullable<'Key>
QuerySource<'T, 'Q>
A query operator that selects those elements based on a specified predicate.
'T -> bool
QuerySource<'T, 'Q>
A method used to support the F# query syntax. Returns a sequence of length one that contains the specified value.
'T
QuerySource<'T, 'Q>
A method used to support the F# query syntax. Returns a sequence that contains the specified values.
QuerySource<'T, 'Q>
QuerySource<'T, 'Q>
A method used to support the F# query syntax. Returns an empty sequence that has the specified type argument.
QuerySource<'T, 'Q>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4