Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. singleton :: Measured v a => a -> SplayTree v a

    rope-utf16-splay Data.SplayTree

    No documentation available.

  2. singleton :: a -> Vector a

    rrb-vector Data.RRBVector

    A vector with a single element.

    singleton x = fromList [x]
    

  3. singleton :: forall (f :: Type -> Type) a . (CPointed f, Dom f a) => a -> Sized f 1 a

    sized Data.Sized

    Sequence with one element. Since 0.7.0.0

  4. singleton :: a -> Future a

    streams Data.Stream.Future.Skew

    O(1)

  5. singleton :: [c] -> a -> TMap c a

    trie-simple Data.Trie.Map

    singleton xs a is a TMap which contains only one entry from xs to a.

  6. singleton :: [c] -> TSet c

    trie-simple Data.Trie.Set

    No documentation available.

  7. singleton :: forall (k :: Symbol) v . KnownSymbol k => (k := v) -> KVList '[k := v]

    type-level-kv-list Data.KVList

    No documentation available.

  8. singleton :: Unboxable a => a -> Vector a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  9. singleton :: a -> Vec ('S 'Z) a

    vec Data.Vec.DataFamily.SpineStrict

    Vec with exactly one element.

    >>> singleton True
    True ::: VNil
    

  10. singleton :: a -> Vec ('S 'Z) a

    vec Data.Vec.Lazy

    Vec with exactly one element.

    >>> singleton True
    True ::: VNil
    

Page 36 of many | Previous | Next