first: Simple wrapper functions that allow Lisp-like list processing in R: first to fifth return the first to fifth element of the list x. rest returns all but the first element of the list x. is.empty returns TRUE iff the list x is of length 0. is.atom returns TRUE iff the list x is of length 1. is.composite returns TRUE iff the list x is of length > 1.
first:简单的包装的类似Lisp列表处理功能,允许在R:first到fifth返回第一至第五元素的列表x。 rest返回所有但列表中x的第一个元素。 is.empty回报TRUE当且仅当列表中x的长度为0。 is.atom回报TRUE当且仅当列表中x的长度为1。 is.composite回报TRUE当且仅当列表中x的长度> 1。