Farkle


RangeMap Module

This module is public due to compiler limitations. Do not use it; it is subject to be removed or altered at any time.

Functions and values

Function or value Description

ofGroupedRanges xs

Full Usage: ofGroupedRanges xs

Parameters:
    xs : ('b * 'd) seq

Returns: RangeMap<'c, 'd>
xs : ('b * 'd) seq
Returns: RangeMap<'c, 'd>

ofSeqEx xs

Full Usage: ofSeqEx xs

Parameters:
Returns: RangeMap<^b, 'd>
Modifiers: inline
Type parameters: ^b, ^c, 'd

Creates a `RangeMap` from a sequence of key-value pairs. The keys can be of any type that can has the notion of "one" and equality checking.

xs : KeyValuePair<^b, 'd> seq
Returns: RangeMap<^b, 'd>

toSeqEx rm

Full Usage: toSeqEx rm

Parameters:
Returns: KeyValuePair<^TKey, ^TValue> seq
Modifiers: inline
Type parameters: ^TKey, ^TValue
rm : RangeMap<^TKey, ^TValue>
Returns: KeyValuePair<^TKey, ^TValue> seq