The @hashmap.T[K, V]::op_get(K) ->Option[V]
method should not return a Option
#1332
Labels
@hashmap.T[K, V]::op_get(K) ->Option[V]
method should not return a Option
#1332
The current
get
andop_get
of@hashmap.T[K, V]
type both return aOption[V]
, but the methods of the same names of Array type return anOption[T]
and aT
respectively. Their behavior should be aligned.The text was updated successfully, but these errors were encountered: