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