Useful functions

The Algo namespace contains a number of useful helpers:

  • Algo::Transform allows going from TArray<A> to TArray<B> like Array.map in many languages
  • Algo::Accumulate is a reduce operation
  • Algo::AllOf allows checking if all values in an array pass a boolean check
  • etc.