Returns this map wrapped in a Some if it's not empty, otherwise returns None.
Option<Map<K, V>> get noneIfEmpty { return isEmpty ? const None() : Some(this); }