LanguageExt.Core
LanguageExt.Core ► Class Instances ► Indexable
Contents
struct ArrayIndex <A> Source #
Methods
method A Get (A[] ma, int key) Source #
method Option<A> TryGet (A[] ma, int key) Source #
struct ArrIndex <A> Source #
method A Get (Arr<A> ma, int key) Source #
method Option<A> TryGet (Arr<A> ma, int key) Source #
struct HashMapIndex <K, A> Source #
method A Get (HashMap<K, A> ma, K key) Source #
method Option<A> TryGet (HashMap<K, A> ma, K key) Source #
struct HashSetIndex <A> Source #
method A Get (HashSet<A> ma, A key) Source #
method Option<A> TryGet (HashSet<A> ma, A key) Source #
struct LstIndex <A> Source #
method A Get (Lst<A> ma, int key) Source #
method Option<A> TryGet (Lst<A> ma, int key) Source #
struct MapIndex <K, A> Source #
method A Get (Map<K, A> ma, K key) Source #
method Option<A> TryGet (Map<K, A> ma, K key) Source #
struct SeqIndex <A> Source #
method A Get (Seq<A> ma, int key) Source #
method Option<A> TryGet (Seq<A> ma, int key) Source #
struct SetIndex <A> Source #
method A Get (Set<A> ma, A key) Source #
method Option<A> TryGet (Set<A> ma, A key) Source #