sequences: Add some examples of head and tail with short.

db4
Doug Coleman 2014-12-17 17:41:25 -08:00
parent 1a3522f20d
commit 2dc5590966
1 changed files with 20 additions and 0 deletions

View File

@ -966,6 +966,11 @@ HELP: head
"{ 1 2 3 4 5 6 7 } 2 head ."
"{ 1 2 }"
}
"When a sequence may not have enough elements:"
{ $example "USING: sequences prettyprint ;"
"{ 1 2 } 5 short head ."
"{ 1 2 }"
}
}
{ $errors "Throws an error if the index is out of bounds." } ;
@ -977,6 +982,11 @@ HELP: tail
"{ 1 2 3 4 5 6 7 } 2 tail ."
"{ 3 4 5 6 7 }"
}
"When a sequence may not have enough elements:"
{ $example "USING: sequences prettyprint ;"
"{ 1 2 } 5 short tail ."
"{ }"
}
}
{ $errors "Throws an error if the index is out of bounds." } ;
@ -998,6 +1008,11 @@ HELP: head*
"{ 1 2 3 4 5 6 7 } 2 head* ."
"{ 1 2 3 4 5 }"
}
"When a sequence may not have enough elements:"
{ $example "USING: sequences prettyprint ;"
"{ 1 2 } 5 short head* ."
"{ }"
}
}
{ $errors "Throws an error if the index is out of bounds." } ;
@ -1009,6 +1024,11 @@ HELP: tail*
"{ 1 2 3 4 5 6 7 } 2 tail* ."
"{ 6 7 }"
}
"When a sequence may not have enough elements:"
{ $example "USING: sequences prettyprint ;"
"{ 1 2 } 5 short tail* ."
"{ 1 2 }"
}
}
{ $errors "Throws an error if the index is out of bounds." } ;