Skip to content

Commit

Permalink
Add missing sdk functions (#71)
Browse files Browse the repository at this point in the history
* Added functions to cover reference model. #65

* More Basics utilities. #65

* Fixed compile and test errors. #65

* Added some missing functions. #65

* Fix typo. #65
  • Loading branch information
AttilaMihaly authored Nov 18, 2020
1 parent 3e95782 commit 99245e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion morphir/sdk/core/src/morphir/sdk/Basics.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ object Basics {
@inline def greaterThan(a: Int)(b: Int): Bool = a > b
@inline def greaterThanOrEqual(a: Int)(b: Int): Bool = a >= b
@inline def min(a: Int)(b: Int): Int = a min b
@inline def max(a: Int)(b: Int): Float = a max b
@inline def max(a: Int)(b: Int): Int = a max b
@inline def add(a: Int)(b: Int): Int = a + b
@inline def subtract(a: Int)(b: Int): Int = a - b
@inline def multiply(a: Int)(b: Int): Int = a * b
Expand Down

0 comments on commit 99245e8

Please sign in to comment.