Collections 関数
これらの関数は、配列、スライス、マップ、ページの各コレクションを操作するものです。
これらの関数は、配列、スライス、マップ、ページの各コレクションを操作するものです。
collections.After INDEX COLLECTION ⟼ anySlices an array to the items after the Nth item. 詳しく見る »
collections.Append ELEMENT [ELEMENT...] COLLECTION ⟼ anyAppends one or more elements to a slice and returns the resulting slice. 詳しく見る »
collections.Apply COLLECTION FUNCTION PARAM... ⟼ []anyReturns a new collection with each element transformed by the given function. 詳しく見る »
collections.Complement COLLECTION [COLLECTION...] ⟼ anyReturns the elements of the last collection that are not in any of the others. 詳しく見る »
collections.Delimit COLLECTION DELIMITER [LAST] ⟼ stringLoops through any array, slice, or map and returns a string of all the values separated by a delimiter. 詳しく見る »
collections.Dictionary [VALUE...] ⟼ mapanyReturns a map composed of the given key-value pairs. 詳しく見る »
collections.First N COLLECTION ⟼ any指定されたコレクションにおける最初の N 個分の要素を返します。 詳しく見る »
collections.Group KEY PAGES ⟼ any指定されたページコレクションに対して、指定されたキーを使ってグルーピングした結果を返します。 詳しく見る »
collections.In SET VALUE ⟼ bool指定された値が指定されたセットのメンバーであるかどうかを返します。 詳しく見る »
collections.Index COLLECTION KEY... ⟼ anyReturns the object, element, or value associated with the given key or keys. 詳しく見る »
collections.Intersect SET1 SET2 ⟼ anyReturns the common elements of two arrays or slices, in the same order as the first array. 詳しく見る »
collections.IsSet COLLECTION KEY ⟼ boolコレクション内にキーが存在するかどうかを返します。 詳しく見る »
collections.KeyVals KEY VALUE... ⟼ types.KeyValuesキーバリュー構造を返します。 詳しく見る »
collections.Last N COLLECTION ⟼ any指定されたコレクションにおける最後の N 個分の要素を返します。 詳しく見る »
collections.Merge MAP MAP... ⟼ anyReturns the result of merging two or more maps. 詳しく見る »
collections.NewScratch ⟼ maps.ScratchReturns a locally scoped “scratch pad” to store and manipulate data. 詳しく見る »
collections.Querify [VALUE...] ⟼ stringReturns a URL query string composed of the given key-value pairs. 詳しく見る »
collections.Reverse COLLECTION ⟼ anyReverses the order of a collection. 詳しく見る »
collections.Seq LAST ⟼ []intReturns a slice of integers. 詳しく見る »
collections.Shuffle COLLECTION ⟼ anyReturns a random permutation of a given array or slice. 詳しく見る »
collections.Slice [VALUE...] ⟼ anyReturns a slice composed of the given values. 詳しく見る »
collections.Sort COLLECTION [KEY] [ORDER] ⟼ anySorts slices, maps, and page collections. 詳しく見る »
COLLECTION | collections.SymDiff COLLECTION ⟼ anyReturns the symmetric difference of two collections. 詳しく見る »
collections.Union SET1 SET2 ⟼ anyGiven two arrays or slices, returns a new array that contains the elements that belong to either or both arrays/slices. 詳しく見る »
collections.Uniq COLLECTION ⟼ anyReturns the given collection, removing duplicate elements. 詳しく見る »
collections.Where COLLECTION KEY [OPERATOR] VALUE ⟼ any指定されたコレクションから、比較条件に合致しない要素を取り除いて返します。 詳しく見る »