Ejemplo n.º 1
0
 public static Ident <Ident <T> > Duplicate <T>(Ident <T> ident) where T : notnull
 => Ident <T> .δ(ident);
Ejemplo n.º 2
0
 public static Ident <T> Flatten <T>(Ident <Ident <T> > square) where T : notnull
 => Ident <T> .μ(square);
Ejemplo n.º 3
0
 public static T Extract <T>(Ident <T> ident) where T : notnull
 => Ident <T> .ε(ident);
Ejemplo n.º 4
0
 public static Ident <T> Of <T>(T value) where T : notnull
 => Ident <T> .η(value);