Exemple #1
0
 public static object Cddr(object thing)
 {
     return((thing == null) ? null : CL.Cdr(CL.Cdr(thing)));
 }
Exemple #2
0
 // CDDR
 public static object Cddr(Cons thing)
 {
     return((thing == null) ? null : CL.Cdr(thing.Cdr));
 }