X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=docs%2FGoalfile.pod;h=37f3c07c7b2c637f48c426070618c5ca831a5487;hb=580298444204f92785a7ac78c4529e95e3cba40d;hp=9917fd02f6561ba1e65926412671333488253860;hpb=b29931c35b032141aaa8de370d9adbfc10705bf2;p=goals.git diff --git a/docs/Goalfile.pod b/docs/Goalfile.pod index 9917fd0..37f3c07 100644 --- a/docs/Goalfile.pod +++ b/docs/Goalfile.pod @@ -38,6 +38,14 @@ For example: Returns the filename extension. +=head3 head (list) + +For example: + + head (["a", "b", "c"]) ⇒ "a" + +Returns the head (first) element of the list. + =head3 join (list1, list2) For example: @@ -48,6 +56,15 @@ Concatenate C and C. It's not usually necessary to use this function since goals automatically flattens lists within lists into simple lists in many cases. +=head3 realpath (filename) + +For example: + + realpath ("./tests") ⇒ "/home/user/tests" + +Run the L command to return the resolved absolute path of +the C parameter. + =head3 sort (list) For example: @@ -67,6 +84,14 @@ This function works something like make’s C function, except that C is a regular expression, specifically a L extended regular expression. +=head3 tail (list) + +For example: + + tail (["a", "b", "c"]) ⇒ ["b", "c"] + +Returns the tail (all except first) elements of the list. + =head3 wildcard (pattern) For example: