ouroboros-consensus-0.1.0.0: Consensus layer for the Ouroboros blockchain protocol
Safe HaskellNone
LanguageHaskell2010

Ouroboros.Consensus.Util.SOP

Synopsis

Minor variations on standard SOP operators

sequence_NS' :: forall xs f g. Functor f => NS (f :.: g) xs -> f (NS g xs) Source #

Version of sequence_NS that requires only Functor

The version in the library requires Applicative, which is unnecessary.

map_NP' :: forall f g xs. (forall a. f a -> g a) -> NP f xs -> NP g xs Source #

Version of map_NP that does not require a singleton

partition_NS :: forall xs f. SListI xs => [NS f xs] -> NP ([] :.: f) xs Source #

npWithIndices :: SListI xs => NP (K Word8) xs Source #

We only allow up to 23 (so counting from 0, 24 elements in xs), because CBOR stores a Word8 in the range 0-23 as a single byte equal to the value of the Word8. We rely on this in reconstructNestedCtxt and other places.

nsToIndex :: SListI xs => NS f xs -> Word8 Source #

nsFromIndex :: SListI xs => Word8 -> Maybe (NS (K ()) xs) Source #

We only allow up to 23, see npWithIndices.

data Lens f xs a Source #

Simple lens to access an element of an n-ary product.

Constructors

Lens 

Fields

lenses_NP :: forall f xs. SListI xs => NP (Lens f xs) xs Source #

Generate all lenses to access the element of an n-ary product.

npToSListI :: NP a xs -> (SListI xs => r) -> r Source #

Conjure up an SListI constraint from an NP

allComposeShowK :: (SListI xs, Show a) => Proxy xs -> Proxy a -> Dict (All (Compose Show (K a))) xs Source #

fn_5 :: (f0 a -> f1 a -> f2 a -> f3 a -> f4 a -> f5 a) -> (f0 -.-> (f1 -.-> (f2 -.-> (f3 -.-> (f4 -.-> f5))))) a Source #

Type-level non-empty lists

class IsNonEmpty xs where Source #

Methods

isNonEmpty :: proxy xs -> ProofNonEmpty xs Source #

Instances

Instances details
IsNonEmpty (x ': xs) Source # 
Instance details

Defined in Ouroboros.Consensus.Util.SOP

Methods

isNonEmpty :: proxy (x ': xs) -> ProofNonEmpty (x ': xs) Source #

data ProofNonEmpty :: [Type] -> Type where Source #

Constructors

ProofNonEmpty :: Proxy x -> Proxy xs -> ProofNonEmpty (x ': xs) 

checkIsNonEmpty :: forall xs. SListI xs => Proxy xs -> Maybe (ProofNonEmpty xs) Source #