mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
* Fix #891 * update tests; artifacts for previous commit
This commit is contained in:
parent
033067e49b
commit
b6bad96caf
9 changed files with 19 additions and 23 deletions
|
|
@ -2240,10 +2240,10 @@ FUNCTIONS FOR FILTER/PUT
|
|||
(class=typing #args=1) True if argument is not a map.
|
||||
|
||||
is_not_null
|
||||
(class=typing #args=1) False if argument is null (empty or absent), true otherwise.
|
||||
(class=typing #args=1) False if argument is null (empty, absent, or JSON null), true otherwise.
|
||||
|
||||
is_null
|
||||
(class=typing #args=1) True if argument is null (empty or absent), false otherwise.
|
||||
(class=typing #args=1) True if argument is null (empty, absent, or JSON null), false otherwise.
|
||||
|
||||
is_numeric
|
||||
(class=typing #args=1) True if field is present with value inferred to be int or float
|
||||
|
|
@ -3086,5 +3086,5 @@ SEE ALSO
|
|||
|
||||
|
||||
|
||||
2022-01-16 MILLER(1)
|
||||
2022-01-20 MILLER(1)
|
||||
</pre>
|
||||
|
|
|
|||
|
|
@ -2219,10 +2219,10 @@ FUNCTIONS FOR FILTER/PUT
|
|||
(class=typing #args=1) True if argument is not a map.
|
||||
|
||||
is_not_null
|
||||
(class=typing #args=1) False if argument is null (empty or absent), true otherwise.
|
||||
(class=typing #args=1) False if argument is null (empty, absent, or JSON null), true otherwise.
|
||||
|
||||
is_null
|
||||
(class=typing #args=1) True if argument is null (empty or absent), false otherwise.
|
||||
(class=typing #args=1) True if argument is null (empty, absent, or JSON null), false otherwise.
|
||||
|
||||
is_numeric
|
||||
(class=typing #args=1) True if field is present with value inferred to be int or float
|
||||
|
|
@ -3065,4 +3065,4 @@ SEE ALSO
|
|||
|
||||
|
||||
|
||||
2022-01-16 MILLER(1)
|
||||
2022-01-20 MILLER(1)
|
||||
|
|
|
|||
|
|
@ -1464,13 +1464,13 @@ is_not_map (class=typing #args=1) True if argument is not a map.
|
|||
|
||||
### is_not_null
|
||||
<pre class="pre-non-highlight-non-pair">
|
||||
is_not_null (class=typing #args=1) False if argument is null (empty or absent), true otherwise.
|
||||
is_not_null (class=typing #args=1) False if argument is null (empty, absent, or JSON null), true otherwise.
|
||||
</pre>
|
||||
|
||||
|
||||
### is_null
|
||||
<pre class="pre-non-highlight-non-pair">
|
||||
is_null (class=typing #args=1) True if argument is null (empty or absent), false otherwise.
|
||||
is_null (class=typing #args=1) True if argument is null (empty, absent, or JSON null), false otherwise.
|
||||
</pre>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -712,8 +712,7 @@ func helpByApproximateSearchOne(thing string) bool {
|
|||
}
|
||||
|
||||
if !found {
|
||||
fmt.Printf("No help found for \"%s\". Please try 'mlr help find %s' for approximate match.\n", thing, thing)
|
||||
fmt.Printf("See also 'mlr help topics'.\n")
|
||||
fmt.Printf("No help found for \"%s\". See also 'mlr help topics'.\n", thing)
|
||||
}
|
||||
return found
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2219,10 +2219,10 @@ FUNCTIONS FOR FILTER/PUT
|
|||
(class=typing #args=1) True if argument is not a map.
|
||||
|
||||
is_not_null
|
||||
(class=typing #args=1) False if argument is null (empty or absent), true otherwise.
|
||||
(class=typing #args=1) False if argument is null (empty, absent, or JSON null), true otherwise.
|
||||
|
||||
is_null
|
||||
(class=typing #args=1) True if argument is null (empty or absent), false otherwise.
|
||||
(class=typing #args=1) True if argument is null (empty, absent, or JSON null), false otherwise.
|
||||
|
||||
is_numeric
|
||||
(class=typing #args=1) True if field is present with value inferred to be int or float
|
||||
|
|
@ -3065,4 +3065,4 @@ SEE ALSO
|
|||
|
||||
|
||||
|
||||
2022-01-16 MILLER(1)
|
||||
2022-01-20 MILLER(1)
|
||||
|
|
|
|||
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: mlr
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: ./mkman.rb
|
||||
.\" Date: 2022-01-16
|
||||
.\" Date: 2022-01-20
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MILLER" "1" "2022-01-16" "\ \&" "\ \&"
|
||||
.TH "MILLER" "1" "2022-01-20" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Portability definitions
|
||||
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -3242,7 +3242,7 @@ gmt2sec("2001-02-03T04:05:06Z") = 981173106
|
|||
.RS 0
|
||||
.\}
|
||||
.nf
|
||||
(class=typing #args=1) False if argument is null (empty or absent), true otherwise.
|
||||
(class=typing #args=1) False if argument is null (empty, absent, or JSON null), true otherwise.
|
||||
.fi
|
||||
.if n \{\
|
||||
.RE
|
||||
|
|
@ -3251,7 +3251,7 @@ gmt2sec("2001-02-03T04:05:06Z") = 981173106
|
|||
.RS 0
|
||||
.\}
|
||||
.nf
|
||||
(class=typing #args=1) True if argument is null (empty or absent), false otherwise.
|
||||
(class=typing #args=1) True if argument is null (empty, absent, or JSON null), false otherwise.
|
||||
.fi
|
||||
.if n \{\
|
||||
.RE
|
||||
|
|
|
|||
|
|
@ -1,2 +1 @@
|
|||
No help found for "nonesuch". Please try 'mlr help find nonesuch' for approximate match.
|
||||
See also 'mlr help topics'.
|
||||
No help found for "nonesuch". See also 'mlr help topics'.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
No help found for "nonesuch". Please try 'mlr help find nonesuch' for approximate match.
|
||||
See also 'mlr help topics'.
|
||||
No help found for "nonesuch". See also 'mlr help topics'.
|
||||
asin (class=math #args=1) Inverse trigonometric sine.
|
||||
asinh (class=math #args=1) Inverse hyperbolic sine.
|
||||
sin (class=math #args=1) Trigonometric sine.
|
||||
|
|
|
|||
|
|
@ -2,5 +2,4 @@
|
|||
Use CSV format for input and output data.
|
||||
--csvlite
|
||||
Use CSV-lite format for input and output data.
|
||||
No help found for "--csv". Please try 'mlr help find --csv' for approximate match.
|
||||
See also 'mlr help topics'.
|
||||
No help found for "--csv". See also 'mlr help topics'.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue