class_group 0.6.0

Rust library for building IQC: cryptography based on class groups (Cl) of imaginary quadratic orders
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Function: mapdelete
Section: programming/specific
C-Name: mapdelete
Prototype: vGG
Help: mapdelete(M,x): removes x from the domain of the map M.
Doc: removes $x$ from the domain of the map $M$.
 \bprog
 ? M = Map(["a",1; "b",3; "c",7]);
 ? mapdelete(M,"b");
 ? Mat(M)
 ["a" 1]

 ["c" 7]
 @eprog