cardano-ledger-binary-1.3.2.0: Binary serialization library used throughout ledger
Safe HaskellSafe-Inferred
LanguageHaskell2010

Cardano.Ledger.Binary.Decoding.Drop

Description

DEPRECATED - This module is deprecated and used in Byron era exclusively. For newer implementation of this functionality use dropCBOR

A 'Dropper s' is a 'Decoder s ()', that is a decoder that returns nothing

We use Droppers when we don't care about the result of decoding, for example when we have deprecated some part of the serialised blockchain, but still need to decode old blocks.

Synopsis

Documentation

type Dropper s = Decoder s () Source #

dropListDropper s → Dropper s Source #

Drop a list of values using the supplied Dropper for each element

dropTripleDropper s → Dropper s → Dropper s → Dropper s Source #