1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-19 10:49:43 +00:00

Merge branch 'tiddlywiki-com'

This commit is contained in:
Jeremy Ruston 2024-07-10 09:02:52 +01:00
commit 98ebbc32f7
3 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,5 @@
created: 20150123220223000
modified: 20240709151004998
modified: 20240709170746678
tags: Filters
title: Dominant Append
type: text/vnd.tiddlywiki
@ -14,4 +14,4 @@ This behaviour can cause unexpected results when working with [[Mathematics Oper
In such situations, the `=` prefix can be used to disable the de-duplication. For example, `=1 =1 =1 +[sum[]]` evaluates to `3` as expected. Alternatively, the [[split Operator]] can be used: `[[1,1,1]split[,]sum[]]`.
<<.tip """To build a list of unique values that retains only the <<.em earliest>> copy of each value (the opposite behavior from <<.link "Dominant Append" "Dominant Append">>), first use the <<.link `:all` "All Filter Run Prefix">> filter run prefix (or its short form `=`) to retain all duplicate values while building your list. Then finish your filter run with the <<.olink unique>> operator" to remove later duplicates.""">>
<<.tip """To build a list of unique values that retains only the <<.em earliest>> copy of each value (the opposite behavior from <<.link "Dominant Append" "Dominant Append">>), first use the <<.link `:all` "All Filter Run Prefix">> filter run prefix (or its short form `=`) to retain all duplicate values while building your list. Then finish your filter run with the <<.olink unique>> operator to remove later duplicates.""">>

View File

@ -1,12 +1,12 @@
caption: minlength
created: 20161011074235805
from-version: 5.1.14
modified: 20240621073052597
modified: 20240709161140504
op-input: a list of items
op-output: those items at least as long as the specified minimum length
op-parameter: the minimum length for items
op-parameter-name: minlength
op-purpose: filter items whose length is greater than the specified minimum length
op-purpose: filter items whose length is greater than or equal to the specified minimum length
tags: [[Filter Operators]]
title: minlength Operator
type: text/vnd.tiddlywiki

View File

@ -577,3 +577,7 @@ Andrei Rybak, @rybak, 2024/06/09
@Leilei332, 2024/06/28
@springerspandrel, 2024/06/27
@andrewgoz, 2024/07/10
Michael McDermott, @michaeljmcd, 2024-07-09