getExn -> get

This commit is contained in:
Vyacheslav Matyukhin 2022-09-21 03:03:17 +04:00
parent 9f103f5cbe
commit 25dce72f11
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -12,10 +12,10 @@ let inputsToDist = (inputs: array<Reducer_T.value>, xyShapeToPointSetDist) => {
item => item =>
switch item { switch item {
| IEvRecord(map) => { | IEvRecord(map) => {
let xValue = map->Belt.Map.String.getExn("x") let xValue = map->Belt.Map.String.get("x")
let yValue = map->Belt.Map.String.getExn("y") let yValue = map->Belt.Map.String.get("y")
switch (xValue, yValue) { switch (xValue, yValue) {
| (IEvNumber(x), IEvNumber(y)) => (x, y) | (Some(IEvNumber(x)), Some(IEvNumber(y))) => (x, y)
| _ => impossibleError->Reducer_ErrorValue.toException | _ => impossibleError->Reducer_ErrorValue.toException
} }
} }