Skip to content

Commit

Permalink
add partitionv variants to sequences page
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Dec 18, 2023
1 parent 44f26cc commit 48e53da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/reference/sequences.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Longer seq from a shorter seq: https://clojure.github.io/clojure/clojure.core-ap
Seq with head-items missing: https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/rest[rest] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/next[next] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/fnext[fnext] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/nnext[nnext] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/drop[drop] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/drop-while[drop-while] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/nthnext[nthnext] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/for[for]
Seq with tail-items missing: https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/take[take] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/take-nth[take-nth] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/take-while[take-while] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/butlast[butlast] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/drop-last[drop-last] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/for[for]
Rearrangment of a seq: https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/flatten[flatten] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/reverse[reverse] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/sort[sort] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/sort-by[sort-by] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/shuffle[shuffle]
Create nested seqs: https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/split-at[split-at] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/split-with[split-with] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partition[partition] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partition-all[partition-all] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partition-by[partition-by]
Create nested seqs: https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/split-at[split-at] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/splitv-at[splitv-at] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/split-with[split-with] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partition[partition] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partition-all[partition-all] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partition-by[partition-by] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partitionv[partitionv] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/partitionv-all[partitionv-all]
Process each item of a seq to create a new seq: https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/map[map] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/pmap[pmap] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/mapcat[mapcat] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/for[for] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/replace[replace] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/reductions[reductions] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/map-indexed[map-indexed] https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/seque[seque]

=== Using a seq
Expand Down

0 comments on commit 48e53da

Please sign in to comment.