From 919292764a1ba57507ab4c93e732d2037a2ffa14 Mon Sep 17 00:00:00 2001 From: Stephen Dolan Date: Thu, 16 May 2013 14:25:28 +0100 Subject: [PATCH] Reverse function. Closes #94. --- builtin.c | 1 + docs/content/3.manual/manual.yml | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/builtin.c b/builtin.c index 47c1386..48d7110 100644 --- a/builtin.c +++ b/builtin.c @@ -562,6 +562,7 @@ static const char* const jq_builtins[] = { "def to_entries: [keys[] as $k | {key: $k, value: .[$k]}];", "def from_entries: map({(.key): .value}) | add;", "def with_entries(f): to_entries | map(f) | from_entries;", + "def reverse: [.[length - 1 - range(0;length)]];", }; diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index e5fff39..7038b5f 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -718,6 +718,16 @@ sections: input: '[1,2,5,3,5,3,1,3]' output: ['[1,2,3,5]'] + - title: `reverse` + body: | + + This function reverses an array. + + examples: + - program: 'reverse' + input: '[1,2,3,4]' + output: ['[4,3,2,1]'] + - title: `contains` body: | -- 2.40.0