Mappings
- Introduction
- Creation Functions
- Creation of Maps
- Creation of Partial Maps
- Creation of Homomorphisms
hom< A -> B | G >: Str, Str → Map
hom< A -> B | y₁, ..., yₙ >: Str, Str → Map
hom< A -> B | x₁ -> y₁, ..., xₙ -> yₙ >: Str, Str → Map
hom< A -> B | x :-> e(x) >: Str, Str → Map
hom< A -> B | x :-> e(x), y :-> i(y) >: Str, Str → Map
- Coercion Maps
- Operations on Mappings
- Images and Preimages
a @ f: Elt, Map → Elt
f(a): Map, Elt → Elt
S @ f: SetEnum, Map → SetEnum
S @ f: SetIndx, Map → SetIndx
S @ f: SeqEnum, Map → Seq
f(S): SetEnum, Map → SetEnum
f(S): SetIndx, Map → SetIndx
f(S): SeqEnum, Map → Seq
C @ f: Str, Map → Str
f(C): Map, Str → Str
y @@ f: Elt, Map → Elt
R @@ f: SetEnum, Map → SetEnum
R @@ f: SetIndx, Map → SetIndx
R @@ f: SeqEnum, Map → Seq
D @@ f: Str, Map → Str
HasPreimage(x, f): Any, Map → BoolElt, Any
- Parents of Maps