class Contender::CopyOnWriteArray

Array that uses copy-on-write to guarantee thread safety

Use this when read throughput is the primary requirement; write operations will always be slow due to the need to create a shallow copy of the array to perform operations on.