This could allow chaining fallbacks: ``` var value = GetValueFromCacheMaybe().Else(() => GetValueFromDatabaseMaybe()).Else(DefaultValue); ```