Returns true if this fully contains other.
true
other
bool containsFully(Period other) { return contains(other.start) && contains(other.end); }