A type-safe map that contains at least one element.
Record Field | Description |
|
Instance member | Description |
|
|
Full Usage:
this.ContainsKey
Parameters:
'Key
Returns: bool
|
|
Full Usage:
this[key]
Parameters:
'Key
Returns: 'Value
|
|
Full Usage:
this.TryFind
Parameters:
'Key
Returns: 'Value option
|
|
Full Usage:
this.TryGetValue
Parameters:
'Key
value : byref<'Value>
Returns: bool
|
|
Static member | Description |
Full Usage:
NonEmptyMap.Create(arg1, rest)
Parameters:
'Key * 'Value
rest : ('Key * 'Value)[]
Returns: NonEmptyMap<'Key, 'Value>
|
|
Full Usage:
NonEmptyMap.FoldIndexed(x, f, z)
Parameters:
NonEmptyMap<'k, 't>
f : 'a -> 'k -> 't -> 'a
z : 'a
Returns: 'a
|
|
|
|
Full Usage:
NonEmptyMap.IterateIndexed(x, f)
Parameters:
NonEmptyMap<'K, 'T>
f : 'K -> 'T -> unit
|
|
Full Usage:
NonEmptyMap.Map(x, mapping)
Parameters:
NonEmptyMap<'a, 'v>
mapping : 'v -> 'u
Returns: NonEmptyMap<'a, 'u>
|
|
Full Usage:
NonEmptyMap.MapIndexed(x, f)
Parameters:
NonEmptyMap<'K, 'T>
f : 'K -> 'T -> 'U
Returns: NonEmptyMap<'K, 'U>
|
|
Full Usage:
NonEmptyMap.ToList(s, ?_impl)
Parameters:
NonEmptyMap<'a, 'b>
?_impl : ToList
Returns: ('a * 'b) list
|
|
Full Usage:
NonEmptyMap.ToSeq(s, ?_impl)
Parameters:
NonEmptyMap<'a, 'b>
?_impl : ToSeq
Returns: ('a * 'b) seq
|
|
Full Usage:
NonEmptyMap.Traverse(x, f)
Parameters:
NonEmptyMap<'K, 'T>
f : 'T -> ^Functor<'U>
Returns: ^Functor
Modifiers: inline |
|
Full Usage:
NonEmptyMap.TraverseIndexed(x, f)
Parameters:
NonEmptyMap<'K, 'T>
f : 'K -> 'T -> ^Functor<'U>
Returns: ^Functor
Modifiers: inline |
|
Full Usage:
NonEmptyMap.Unzip(x)
Parameters:
NonEmptyMap<'K, ('T * 'U)>
Returns: NonEmptyMap<'K, 'T> * NonEmptyMap<'K, 'U>
|
|
Full Usage:
NonEmptyMap.``+``(x, y, ?_mthd)
Parameters:
NonEmptyMap<'a, ^b>
y : NonEmptyMap<'a, ^b>
?_mthd : Plus
Returns: NonEmptyMap<'a, ^b>
Modifiers: inline |
|