primitive-unlifted-1.0.0.0: Primitive GHC types with unlifted types inside
Safe HaskellNone
LanguageHaskell2010

Data.Primitive.Unlifted.Class

Documentation

class PrimUnlifted a where Source #

Associated Types

type Unlifted a :: TYPE 'UnliftedRep Source #

Instances

Instances details
PrimUnlifted ThreadId Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted ThreadId :: TYPE 'UnliftedRep Source #

PrimUnlifted ShortByteString Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted ShortByteString :: TYPE 'UnliftedRep Source #

PrimUnlifted ByteArray Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted ByteArray :: TYPE 'UnliftedRep Source #

PrimUnlifted ShortText Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted ShortText :: TYPE 'UnliftedRep Source #

PrimUnlifted (StableName a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (StableName a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (TVar a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (TVar a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (IORef a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (IORef a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (Weak a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (Weak a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (MVar a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (MVar a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (PrimArray a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (PrimArray a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (MutableByteArray s) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (MutableByteArray s) :: TYPE 'UnliftedRep Source #

PrimUnlifted (SmallArray a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (SmallArray a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (Array a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (Array a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (Box a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Box

Associated Types

type Unlifted (Box a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (STRef s a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (STRef s a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (MutablePrimArray s a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (MutablePrimArray s a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (SmallMutableArray s a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (SmallMutableArray s a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (MutVar s a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (MutVar s a) :: TYPE 'UnliftedRep Source #

PrimUnlifted (MVar s a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (MVar s a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: MVar s a -> Unlifted (MVar s a) Source #

fromUnlifted# :: Unlifted (MVar s a) -> MVar s a Source #

PrimUnlifted (MutableArray s a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Class

Associated Types

type Unlifted (MutableArray s a) :: TYPE 'UnliftedRep Source #

unlifted_a ~ Unlifted a => PrimUnlifted (UnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Associated Types

type Unlifted (UnliftedArray_ a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: UnliftedArray_ a unlifted_a -> Unlifted (UnliftedArray_ a unlifted_a) Source #

fromUnlifted# :: Unlifted (UnliftedArray_ a unlifted_a) -> UnliftedArray_ a unlifted_a Source #

unlifted_a ~ Unlifted a => PrimUnlifted (SmallUnliftedArray_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.SmallArray.ST

Associated Types

type Unlifted (SmallUnliftedArray_ a unlifted_a) :: TYPE 'UnliftedRep Source #

unlifted_a ~ Unlifted a => PrimUnlifted (MutableUnliftedArray_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Array.ST

Associated Types

type Unlifted (MutableUnliftedArray_ s a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: MutableUnliftedArray_ s a unlifted_a -> Unlifted (MutableUnliftedArray_ s a unlifted_a) Source #

fromUnlifted# :: Unlifted (MutableUnliftedArray_ s a unlifted_a) -> MutableUnliftedArray_ s a unlifted_a Source #

unlifted_a ~ Unlifted a => PrimUnlifted (UnliftedMVar_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.MVar.ST

Associated Types

type Unlifted (UnliftedMVar_ s a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: UnliftedMVar_ s a unlifted_a -> Unlifted (UnliftedMVar_ s a unlifted_a) Source #

fromUnlifted# :: Unlifted (UnliftedMVar_ s a unlifted_a) -> UnliftedMVar_ s a unlifted_a Source #

unlifted_a ~ Unlifted a => PrimUnlifted (UnliftedMutVar_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.MutVar.ST

Associated Types

type Unlifted (UnliftedMutVar_ s a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: UnliftedMutVar_ s a unlifted_a -> Unlifted (UnliftedMutVar_ s a unlifted_a) Source #

fromUnlifted# :: Unlifted (UnliftedMutVar_ s a unlifted_a) -> UnliftedMutVar_ s a unlifted_a Source #

unlifted_a ~ Unlifted a => PrimUnlifted (SmallMutableUnliftedArray_ s a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.SmallArray.ST

Associated Types

type Unlifted (SmallMutableUnliftedArray_ s a unlifted_a) :: TYPE 'UnliftedRep Source #

unlifted_a ~ Unlifted a => PrimUnlifted (UnliftedWeak_ a unlifted_a) Source # 
Instance details

Defined in Data.Primitive.Unlifted.Weak.IO

Associated Types

type Unlifted (UnliftedWeak_ a unlifted_a) :: TYPE 'UnliftedRep Source #

Methods

toUnlifted# :: UnliftedWeak_ a unlifted_a -> Unlifted (UnliftedWeak_ a unlifted_a) Source #

fromUnlifted# :: Unlifted (UnliftedWeak_ a unlifted_a) -> UnliftedWeak_ a unlifted_a Source #