File: dest_cons.doc

package info (click to toggle)
hol-light 20170109-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 36,568 kB
  • ctags: 8,549
  • sloc: ml: 540,018; cpp: 439; lisp: 286; java: 279; makefile: 262; sh: 229; yacc: 108; perl: 78; ansic: 57; sed: 39
file content (19 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
\DOC dest_cons

\TYPE {dest_cons : term -> term * term}

\SYNOPSIS
Breaks apart a `CONS pair' into head and tail.

\DESCRIBE
{dest_cons} is a term destructor for `CONS pairs'. When applied to a term
representing a nonempty list {`[t;t1;...;tn]`} (which is equivalent to {`CONS t
[t1;...;tn]`}), it returns the pair of terms {(`t`,`[t1;...;tn]`)}.

\FAILURE
Fails with {dest_cons} if the term is not a non-empty list.

\SEEALSO
dest_list, is_cons, is_list, mk_cons, mk_list.

\ENDDOC