Skip to content

Commit e611212

Browse files
Pull stdlib content from v0.19.0 (#82)
This should add the `splitLimitR`, `all` and `any` functions to autocomplete + hover
1 parent 5c8f3ec commit e611212

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/stdlib/stdlib-content.jsonnet

+3-3
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ local html = import 'html.libsonnet';
385385
{
386386
name: 'splitLimitR',
387387
params: ['str', 'c', 'maxsplits'],
388-
availableSince: 'upcoming',
388+
availableSince: 'v0.19.0',
389389
description: 'As <code>std.splitLimit(str, c, maxsplits)</code> but will split from right to left.',
390390
examples: [
391391
{
@@ -1286,7 +1286,7 @@ local html = import 'html.libsonnet';
12861286
{
12871287
name: 'all',
12881288
params: ['arr'],
1289-
availableSince: 'upcoming',
1289+
availableSince: 'v0.19.0',
12901290
description: html.paragraphs([
12911291
|||
12921292
Return true if all elements of <code>arr</code> is true, false otherwise. <code>all([])</code> evaluates to true.
@@ -1299,7 +1299,7 @@ local html = import 'html.libsonnet';
12991299
{
13001300
name: 'any',
13011301
params: ['arr'],
1302-
availableSince: 'upcoming',
1302+
availableSince: 'v0.19.0',
13031303
description: html.paragraphs([
13041304
|||
13051305
Return true if any element of <code>arr</code> is true, false otherwise. <code>any([])</code> evaluates to false.

0 commit comments

Comments
 (0)