fortran-src-0.12.0: Parsers and analyses for Fortran standards 66, 77, 90, 95 and 2003 (partial).
Safe HaskellSafe-Inferred
LanguageHaskell2010

Language.Fortran.Repr.Value.Common

Documentation

data PrimRepr Source #

Constructors

Machine

Representation behaviour intends to match Fortran's. I guess we'll target gfortran.

Idealized

Use "mathematically ideal" representations e.g. Integer for all INTEGER(x) types. This enables us to check for correctness issues such as overflow.

data Check Source #

Constructors

Checked

Where relevant/possible, values will be checked for correctness (e.g. existence of over/underflow), and adjusted accordingly.

Unchecked

Values will not be checked for correctness.