argo-0.2022.8.28: Parse and render JSON.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Argo.Internal.Type.Nullable

Documentation

newtype Nullable a Source #

Constructors

Nullable (Maybe a) 

Instances

Instances details
HasCodec a => HasCodec (Nullable a) Source # 
Instance details

Defined in Argo.Internal.Class.HasCodec

Methods

codec :: Value (Nullable a) Source #

Show a => Show (Nullable a) Source # 
Instance details

Defined in Argo.Internal.Type.Nullable

Methods

showsPrec :: Int -> Nullable a -> ShowS #

show :: Nullable a -> String #

showList :: [Nullable a] -> ShowS #

Eq a => Eq (Nullable a) Source # 
Instance details

Defined in Argo.Internal.Type.Nullable

Methods

(==) :: Nullable a -> Nullable a -> Bool #

(/=) :: Nullable a -> Nullable a -> Bool #

just :: a -> Nullable a Source #