SwayDB
SwayDB copied to clipboard
Implement `getOrNull`
map.get(key) returns an Optional<Value>.
Another getOrNull API annotated with @Nullable is required for cases where we do not want to create Optional instances in Java or Option in Scala.
map.getOrNull(key) should return @Nullable Value.