/** * Reverses the order of items in `in_a` by mutating `in_a`. */ export declare function reverse(in_a:readonly I[]):O export declare function maybe_reverse( maybe_a:readonly I[]|undefined, or?:Or ):O|Or