wikis Search Results · repo:jqlang/jq language:Shell
Filter by
41 results
(128 ms)41 results
injqlang/jq (press backspace or delete to remove)Scope of Symbols Closures Local functions Tail-Call Optimization Generators Lazy Evaluation Streams Recursion and Tail Recursion Optimization Scope of symbols jq is scoped strictly lexically. Symbols ...
- Last updated on Oct 28, 2018
TBD Documentation for the C API is mostly missing, but the source code is a pretty good source of documentation at this point. Stability: Types and functions whose names start with jq_ and jv_ , and constants ...
- Last updated on Feb 16, 2015
This page should be for documenting patterns in C that resemble patterns in jq C is not jq. A lot of jq patterns can't be replicated in C with the jv API, but some resemblance for some patterns can ...
- Last updated on Aug 30, 2023
For delicacies too choice for the manual. TOC Using bag to implement a sort-free version of unique Find the maximal elements of an array or stream Using jq as a template engine Emit the ids of JSON objects ...
- Last updated on May 30, 2023
This page describes how to cross-compile jq for Windows on Linux and similar. To cross compile, use the --host= and --target= ./configure options to select a cross-compilation environment. A similar method ...
- Last updated on Aug 2, 2023
This page gives suggestions for working on a contribution to jq. These do not apply if you are writing code in the jq language itself. Make Use make -j4 and make check -j4 to build and run unit tests in ...
- Last updated on Jul 12, 2015
C Style It's pretty simple: indent with two spaces lines can be very long, so your $EDITOR had better handle it align indented continuations of function arguments on the column after the opening parenthesis ...
- Last updated on Aug 14, 2015
In an inspired and original move, jq's docs are to be found in the docs folder. Generating the docs requires a working Ruby setup, read on for how to get one. If you just want to document a feature ...
- Last updated on Nov 1, 2015
The home page for the Oniguruma user documentation is https://github.com/kkos/oniguruma/blob/master/doc/RE The copyright notice is at https://github.com/kkos/oniguruma/blob/master/COPYING The following ...
- Last updated on Feb 27, 2021
Given these trivial wrappers around foreach : def parse(stream; init; next; extract):
foreach stream as $item (init; .item = $item | next; extract);
def parse(stream; init; next):
parse(stream; ...
- Last updated on Feb 1, 2019