diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-26 11:04:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-26 11:13:42 +0200 |
commit | a8a54893c09c86e560e6fee9d7972419716dd56d (patch) | |
tree | eae16c1efe034f8593de4cc7981268d584a027c1 /libbuild2/functions-string.cxx | |
parent | 234869bfab747a373ac8815fc567957a8b05237e (diff) |
Add $size(string), $size(path), and $size(dir_path) functions
Diffstat (limited to 'libbuild2/functions-string.cxx')
-rw-r--r-- | libbuild2/functions-string.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbuild2/functions-string.cxx b/libbuild2/functions-string.cxx index 18a4ed6..4a03a5e 100644 --- a/libbuild2/functions-string.cxx +++ b/libbuild2/functions-string.cxx @@ -83,6 +83,12 @@ namespace build2 // f["size"] += [] (strings v) {return v.size ();}; + // $size(<string>) + // + // Return the number of characters (bytes) in the string. + // + f["size"] += [] (string v) {return v.size ();}; + // $sort(<strings> [, <flags>]) // // Sort strings in ascending order. |