Sha256: efbd423062c238185c2b589878d84ccd525e4bc747615544fd82682128f9049f
Contents?: true
Size: 189 Bytes
Versions: 8
Compression:
Stored size: 189 Bytes
Contents
class Array # Returns an array containing elements exclusive between two arrays. # [1, 2, 3] ^ [1, 2, 4] # #=> [3, 4] def ^(other) (self - other) | (other - self) end end
Version data entries
8 entries across 8 versions & 1 rubygems