Agda-2.6.2.1: A dependently typed functional programming language and proof assistant
Safe HaskellSafe-Inferred
LanguageHaskell2010

Agda.Utils.Singleton

Description

Constructing singleton collections.

Synopsis

Documentation

class (Semigroup coll, Monoid coll, Singleton el coll) => Collection el coll | coll -> el where Source #

A create-only possibly empty collection is a monoid with the possibility to inject elements.

Minimal complete definition

Nothing

Methods

fromList :: [el] -> coll Source #

Instances

Instances details
Collection Int IntSet Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [Int] -> IntSet Source #

Collection a (Endo [a]) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [a] -> Endo [a] Source #

Collection a (Seq a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [a] -> Seq a Source #

Ord a => Collection a (Set a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [a] -> Set a Source #

(Eq a, Hashable a) => Collection a (HashSet a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [a] -> HashSet a Source #

Collection a [a] Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [a] -> [a] Source #

Collection a ([a] -> [a]) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [a] -> [a] -> [a] Source #

Collection (Call cinfo) (CallGraph cinfo) Source # 
Instance details

Defined in Agda.Termination.CallGraph

Methods

fromList :: [Call cinfo] -> CallGraph cinfo Source #

Collection (Int, a) (IntMap a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [(Int, a)] -> IntMap a Source #

Ord k => Collection (k, a) (Map k a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [(k, a)] -> Map k a Source #

(Eq k, Hashable k) => Collection (k, a) (HashMap k a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

fromList :: [(k, a)] -> HashMap k a Source #

class Singleton el coll | coll -> el where Source #

Overloaded singleton constructor for collections.

Methods

singleton :: el -> coll Source #

Instances

Instances details
Singleton MetaId MetaSet Source # 
Instance details

Defined in Agda.TypeChecking.Free.Lazy

Singleton MetaId () Source # 
Instance details

Defined in Agda.TypeChecking.Free.Lazy

Methods

singleton :: MetaId -> () Source #

Singleton Variable VarCounts Source # 
Instance details

Defined in Agda.TypeChecking.Free

Singleton Int IntSet Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: Int -> IntSet Source #

Singleton Variable (VarMap' a) Source #

A "set"-style Singleton instance with default/initial variable occurrence.

Instance details

Defined in Agda.TypeChecking.Free.Lazy

Singleton a (Favorites a) Source # 
Instance details

Defined in Agda.Utils.Favorites

Methods

singleton :: a -> Favorites a Source #

Singleton a (Endo [a]) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> Endo [a] Source #

Singleton a (Seq a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> Seq a Source #

Singleton a (Set a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> Set a Source #

Hashable a => Singleton a (HashSet a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> HashSet a Source #

Singleton a (NonEmpty a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> NonEmpty a Source #

Singleton a (Maybe a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> Maybe a Source #

Singleton a [a] Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> [a] Source #

Singleton a ([a] -> [a]) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: a -> [a] -> [a] Source #

Singleton (Call cinfo) (CallGraph cinfo) Source # 
Instance details

Defined in Agda.Termination.CallGraph

Methods

singleton :: Call cinfo -> CallGraph cinfo Source #

Singleton (CallMatrixAug cinfo) (CMSet cinfo) Source # 
Instance details

Defined in Agda.Termination.CallMatrix

Methods

singleton :: CallMatrixAug cinfo -> CMSet cinfo Source #

Singleton (Variable, FlexRig' ()) FlexRigMap Source # 
Instance details

Defined in Agda.TypeChecking.Free.Lazy

Singleton (Int, a) (IntMap a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: (Int, a) -> IntMap a Source #

Singleton (k, a) (Map k a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: (k, a) -> Map k a Source #

Hashable k => Singleton (k, a) (HashMap k a) Source # 
Instance details

Defined in Agda.Utils.Singleton

Methods

singleton :: (k, a) -> HashMap k a Source #