mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-28 07:49:45 +00:00
doc fix for list_head
This commit is contained in:
parent
1930d5deee
commit
8b90ef14d6
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ function last(list) =
|
||||||
// Example:
|
// Example:
|
||||||
// hlist1 = list_head(["foo", "bar", "baz"]); // Returns: ["foo", "bar"]
|
// hlist1 = list_head(["foo", "bar", "baz"]); // Returns: ["foo", "bar"]
|
||||||
// hlist2 = list_head(["foo", "bar", "baz"], -3); // Returns: ["foo"]
|
// hlist2 = list_head(["foo", "bar", "baz"], -3); // Returns: ["foo"]
|
||||||
// hlist3 = list_head(["foo", "bar", "baz"], 2); // Returns: ["foo","bar"]
|
// hlist3 = list_head(["foo", "bar", "baz"], 1); // Returns: ["foo","bar"]
|
||||||
// hlist4 = list_head(["foo", "bar", "baz"], -5); // Returns: []
|
// hlist4 = list_head(["foo", "bar", "baz"], -5); // Returns: []
|
||||||
// hlist5 = list_head(["foo", "bar", "baz"], 5); // Returns: ["foo","bar","baz"]
|
// hlist5 = list_head(["foo", "bar", "baz"], 5); // Returns: ["foo","bar","baz"]
|
||||||
function list_head(list, to=-2) =
|
function list_head(list, to=-2) =
|
||||||
|
|
Loading…
Reference in a new issue