plutarch-1.10.1
Safe HaskellSafe-Inferred
LanguageGHC2021

Plutarch.List

Description

Scott-encoded lists and ListLike typeclass

Synopsis

Documentation

data PList (a :: S -> Type) (s :: S) Source #

SOP-encoded list.

Since: 1.10.0

Constructors

PSCons (Term s a) (Term s (PList a)) 
PSNil 

Instances

Instances details
PListLike PList Source # 
Instance details

Defined in Plutarch.List

Associated Types

type PElemConstraint PList a Source #

Methods

pelimList :: forall (a :: S -> Type) (s :: S) (r :: PType). PElemConstraint PList a => (Term s a -> Term s (PList a) -> Term s r) -> Term s r -> Term s (PList a) -> Term s r Source #

pcons :: forall (a :: S -> Type) (s :: S). PElemConstraint PList a => Term s (a :--> (PList a :--> PList a)) Source #

pnil :: forall (a :: S -> Type) (s :: S). PElemConstraint PList a => Term s (PList a) Source #

phead :: forall (a :: S -> Type) (s :: S). PElemConstraint PList a => Term s (PList a :--> a) Source #

ptail :: forall (a :: S -> Type) (s :: S). PElemConstraint PList a => Term s (PList a :--> PList a) Source #

pnull :: forall (a :: S -> Type) (s :: S). PElemConstraint PList a => Term s (PList a :--> PBool) Source #

PEq a => PEq (PList a) Source # 
Instance details

Defined in Plutarch.List

Methods

(#==) :: forall (s :: S). Term s (PList a) -> Term s (PList a) -> Term s PBool Source #

PlutusType (PList a) Source # 
Instance details

Defined in Plutarch.List

Associated Types

type PInner (PList a) :: PType Source #

type PCovariant' (PList a) Source #

type PContravariant' (PList a) Source #

type PVariant' (PList a) Source #

Methods

pcon' :: forall (s :: S). PList a s -> Term s (PInner (PList a)) Source #

pmatch' :: forall (s :: S) (b :: PType). Term s (PInner (PList a)) -> (PList a s -> Term s b) -> Term s b Source #

PShow a => PShow (PList a) Source # 
Instance details

Defined in Plutarch.List

Methods

pshow' :: forall (s :: S). Bool -> Term s (PList a) -> Term s PString Source #

Generic (PList a s) Source # 
Instance details

Defined in Plutarch.List

Associated Types

type Rep (PList a s) :: Type -> Type Source #

Methods

from :: PList a s -> Rep (PList a s) x Source #

to :: Rep (PList a s) x -> PList a s Source #

Generic (PList a s) Source # 
Instance details

Defined in Plutarch.List

Associated Types

type Code (PList a s) :: [[Type]]

Methods

from :: PList a s -> Rep (PList a s)

to :: Rep (PList a s) -> PList a s

type PElemConstraint PList _1 Source # 
Instance details

Defined in Plutarch.List

type PElemConstraint PList _1 = ()
type PContravariant' (PList a) Source # 
Instance details

Defined in Plutarch.List

type PCovariant' (PList a) Source # 
Instance details

Defined in Plutarch.List

type PInner (PList a) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.List

type PVariant' (PList a) Source # 
Instance details

Defined in Plutarch.List

type Rep (PList a s) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.List

type Rep (PList a s) = D1 ('MetaData "PList" "Plutarch.List" "plutarch-1.10.1-LPGZaAWjybFFuyJX8dF1yJ" 'False) (C1 ('MetaCons "PSCons" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Term s a)) :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Term s (PList a)))) :+: C1 ('MetaCons "PSNil" 'PrefixI 'False) (U1 :: Type -> Type))
type Code (PList a s) Source #

Since: 1.10.0

Instance details

Defined in Plutarch.List

type Code (PList a s) = GCode (PList a s)

ptryUncons :: PIsListLike list a => Term s (list a :--> PPair a (list a)) Source #

Extract head and tail of the list, throws error if list is empty.

puncons :: PIsListLike list a => Term s (list a :--> PMaybe (PPair a (list a))) Source #

Extract head and tail of the list, if list is not empty.

pzip :: (PListLike list, PElemConstraint list a, PElemConstraint list b, PElemConstraint list (PPair a b)) => Term s (list a :--> (list b :--> list (PPair a b))) Source #

O(min(n, m)) . Zip two lists together, creating pairs of the elements.

If the lists are of differing lengths, cut to the shortest.

pfind :: PIsListLike l a => Term s ((a :--> PBool) :--> (l a :--> PMaybe a)) Source #

O(n) . like haskell level find but on plutarch level

preverse :: forall (l :: (S -> Type) -> S -> Type) (a :: S -> Type) (s :: S). PIsListLike l a => Term s (l a :--> l a) Source #

O(n) . Reverse a list-like structure.

Since: 1.10.0

pcheckSorted :: forall (l :: (S -> Type) -> S -> Type) (a :: S -> Type) (s :: S). (PIsListLike l a, POrd a) => Term s (l a :--> PBool) Source #

O(n) . Checks if a list-list structure is sorted.

Since: 1.10.0

pelem :: (PIsListLike list a, PEq a) => Term s (a :--> (list a :--> PBool)) Source #

O(n) . Check if element is in the list

(#!!) :: PIsListLike l a => Term s (l a) -> Term s PInteger -> Term s a Source #

O(n) . Like Haskell level (!!) but on the plutarch level

pelemAt :: PIsListLike l a => Term s (PInteger :--> (l a :--> a)) Source #

O(n) . Like Haskell level (!!) but on the Plutarch level, not infix and with arguments reversed, errors if the specified index is greater than or equal to the lists length

pelemAt' :: PIsListLike l a => Term s (PInteger :--> (l a :--> a)) Source #

O(n) . like pelemAt but doesn't fail on negative indexes

plistEquals :: (PIsListLike list a, PEq a) => Term s (list a :--> (list a :--> PBool)) Source #

O(min(n, m)) . Check if two lists are equal.

pmatchListN :: forall b li a s. PIsListLike li a => Integer -> Term s (li a) -> ([Term s a] -> Term s (li a) -> Term s b) -> Term s b Source #

Match first N elements from the list. It's is better to use pmatchList if number of elements that needs to be match does not need to be dynamically determined. It is important to understand each element given in Haskell list is "computation" to get nth element. If those need to be referenced multiple times, it needs to be pletted to prevent duplication of computation.

@since WIP

pmatchList :: forall n r li a s. (PIsListLike li a, KnownNat (Length (Replicate n a)), UnsafeConstrNP (Replicate n a)) => Term s (li a) -> (NP (Term s) (Replicate n a) -> Term s (li a) -> Term s r) -> Term s r Source #

Same functionality to pmatchListN but each matched value will be given in NP for better typing. Same performance implications as pmatchListN.

@since WIP

pmatchListUnsafe :: forall (struct :: [S -> Type]) r li a s. (PIsListLike li a, KnownNat (Length struct), UnsafeConstrNP struct) => Term s (li a) -> (NP (Term s) struct -> Term s (li a) -> Term s r) -> Term s r Source #

Same as pmatchList but allows matching each element to arbitrary type. Essentially, this is pmatchList combined with punsafeCoerce; therefore, this is unsafe and will require careful attention when using this.

This function is especially helpful when matching on PBuiltinList (PData) when user knows the type of each elements. If first two elements are Data Integers, one can use pmatchListUnsafe '[PAsData PInteger, PAsData PInteger] li@ and have everything already coerced when it's being matched.

@since WIP