This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/packages/core/native/float_64/multiplication.huia
James Harton 96677aa499 Start writing some ideas for how things might work in Huia.
I know this is dumb, but it's the best way for be to crystalise my thoughts about how this will work.
2018-08-29 12:46:07 +12:00

16 lines
406 B
Text

defimpl Multiplication, for: Native.Float64, as: ->
def multiply_by other: Native.Float64, as: ->
Huia.Primitive.f64_multiply_by(lhs: self, rhs: other)
end
def multiply_by other: Native.Integer64, as: ->
as_float = Huia.Primitive.i64_to_f64!(value: other)
Huia.Primitive.f64_multiply_by(lhs: self, rhs: as_float)
end
def multiply_by other: Any, as: ->
Result.none()
end
end