futhark-0.25.31: An optimising compiler for a functional, array-oriented language.
Safe HaskellNone
LanguageGHC2021

Language.Futhark.TypeChecker.Terms.Pat

Description

Type checking of patterns.

Synopsis

Documentation

binding :: [Ident StructType] -> TermTypeM a -> TermTypeM a Source #

Bind these identifiers locally while running the provided action.

bindingParams :: [TypeParam] -> [PatBase (NoInfo :: Type -> Type) VName ParamType] -> ([Pat ParamType] -> TermTypeM a) -> TermTypeM a Source #

Check and bind type and value parameters.

bindingPat :: [SizeBinder VName] -> PatBase (NoInfo :: Type -> Type) VName (TypeBase Size u) -> StructType -> (Pat ParamType -> TermTypeM a) -> TermTypeM a Source #

Check and bind a let-pattern.

bindingIdent :: IdentBase (NoInfo :: Type -> Type) VName StructType -> StructType -> (Ident StructType -> TermTypeM a) -> TermTypeM a Source #

Bind a single term-level identifier.

bindingSizes :: [SizeBinder VName] -> TermTypeM a -> TermTypeM a Source #

Bind let-bound sizes. This is usually followed by bindingPat immediately afterwards.