class Concurrent::MVar

def full?

Returns if the `MVar` currently contains a value.
def full?
  !empty?
end