Set Type
Contains methods for compiler use related to sets.
Static members
| Static member |
Description
|
Full Usage:
Set.Create(items)
Parameters:
ReadOnlySpan<'T>
-
The items to store in the set.
Returns: Set<'T>
A set containing the specified items.
|
Creates a set with the specified items. This is an O(n log n) operation, where n is the number of items in the span.
|
FSharp.Core