Skip to content

Commit

Permalink
Pull stdlib content from v0.19.0 (#82)
Browse files Browse the repository at this point in the history
This should add the `splitLimitR`, `all` and `any` functions to autocomplete + hover
  • Loading branch information
julienduchesne authored Nov 1, 2022
1 parent 5c8f3ec commit e611212
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/stdlib/stdlib-content.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ local html = import 'html.libsonnet';
{
name: 'splitLimitR',
params: ['str', 'c', 'maxsplits'],
availableSince: 'upcoming',
availableSince: 'v0.19.0',
description: 'As <code>std.splitLimit(str, c, maxsplits)</code> but will split from right to left.',
examples: [
{
Expand Down Expand Up @@ -1286,7 +1286,7 @@ local html = import 'html.libsonnet';
{
name: 'all',
params: ['arr'],
availableSince: 'upcoming',
availableSince: 'v0.19.0',
description: html.paragraphs([
|||
Return true if all elements of <code>arr</code> is true, false otherwise. <code>all([])</code> evaluates to true.
Expand All @@ -1299,7 +1299,7 @@ local html = import 'html.libsonnet';
{
name: 'any',
params: ['arr'],
availableSince: 'upcoming',
availableSince: 'v0.19.0',
description: html.paragraphs([
|||
Return true if any element of <code>arr</code> is true, false otherwise. <code>any([])</code> evaluates to false.
Expand Down

0 comments on commit e611212

Please sign in to comment.