Skip to main content
Log in

Mojo function

partition

partition[: origin.set, T: CollectionElement, origin: MutableOrigin, //, cmp_fn: fn(T, T) capturing -> Bool](span: Span[T, origin], k: Int)

Partition the input buffer inplace such that first k elements are the largest (or smallest if cmp_fn is < operator) elements. The ordering of the first k elements is undefined.

Parameters:

  • T (CollectionElement): Type of the underlying data.
  • origin (MutableOrigin): Origin of span.
  • cmp_fn (fn(T, T) capturing -> Bool): Comparison functor of (T, T) capturing [_] -> Bool type.

Args:

  • span (Span[T, origin]): Input buffer.
  • k (Int): Index of the partition element.