Skip to main content

General

9
  • bounded-count

    If coll is counted? returns its count, else will count at most the first n elements of coll using its seq

  • comparator

    Returns an implementation of java.util.Comparator based upon pred.

  • ffirst

    Same as (first (first x))

  • fnext

    Same as (first (next x))

  • iteration

    Creates a seqable/reducible via repeated calls to step, a function of some (continuation token) 'k'. The first call to...

  • max-key

    Returns the x for which (k x), a number, is greatest. If there are multiple such xs, the last one is returned.

  • min-key

    Returns the x for which (k x), a number, is least. If there are multiple such xs, the last one is returned.

  • nfirst

    Same as (next (first x))

  • nnext

    Same as (next (next x))