diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-04-16 10:00:37 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-04-16 10:00:37 -0700 |
commit | 5413d5e7eaa6ef55608f0a3309f83b368c8d88b9 (patch) | |
tree | ec331c2021a5120c31d8a6c80345b86cbcd585ba /cppawk-cons.1 | |
parent | 760c77bd3936f1c655fb1886eb312aa6e9d89d9c (diff) | |
download | cppawk-5413d5e7eaa6ef55608f0a3309f83b368c8d88b9.tar.gz cppawk-5413d5e7eaa6ef55608f0a3309f83b368c8d88b9.tar.bz2 cppawk-5413d5e7eaa6ef55608f0a3309f83b368c8d88b9.zip |
Rename some array and field conversion functions.
atol -> values
ftol -> fields
ltof -> set_fields
values() goes with existing keys() nicely.
Diffstat (limited to 'cppawk-cons.1')
-rw-r--r-- | cppawk-cons.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppawk-cons.1 b/cppawk-cons.1 index ec97a41..938774e 100644 --- a/cppawk-cons.1 +++ b/cppawk-cons.1 @@ -100,13 +100,13 @@ cons \- Lisp-like data representation and control flow macros \fI// array -> list conversion\fP - atol(\fIx\fP) \fI// convert values of Awk array a to list\fP + values(\fIx\fP) \fI// convert values of Awk array a to list\fP keys(\fIx\fP) \fI// return list of keys of Awk array x\fP \fI// field <-> list conversion\fP - ftol(\fIx\fP) \fI// convert Awk positional fields to list\fP - ltof(\fIx\fP) \fI// set Awk positional fields from list x\fP + fields(\fIx\fP) \fI// convert Awk positional fields to list\fP + set_fields(\fIx\fP) \fI// set Awk positional fields from list x\fP \fI// list iteration\fP |