Skip to content

Commit

Permalink
Update scala-morphir supported functions
Browse files Browse the repository at this point in the history
  • Loading branch information
bensanchin committed Apr 16, 2024
1 parent 3ba55ab commit d95e83c
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
./.idea
.idea/
.fake
.ionide

Expand Down
117 changes: 58 additions & 59 deletions docs/scala/support.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,56 +157,56 @@ This section lists the SDK types and functions currently supported in this versi
### Char
| Function | Morphir-Elm Version Introduced | Supported |
|---------------|--------------------------------|-----------|
| isUpper | v2.31.3 | ✕ |
| isLower | v2.31.3 | ✕ |
| isAlpha | v2.31.3 | ✕ |
| isAlphaNum | v2.31.3 | ✕ |
| isDigit | v2.31.3 | ✕ |
| isOctDigit | v2.31.3 | ✕ |
| isHexDigit | v2.31.3 | ✕ |
| toUpper | v2.31.3 | ✕ |
| toLower | v2.31.3 | ✕ |
| toLocaleUpper | v2.31.3 | ✕ |
| toLocaleLower | v2.31.3 | ✕ |
| toCode | v2.31.3 | ✕ |
| fromCode | v2.31.3 | ✕ |
| isUpper | v2.31.3 | ✓ |
| isLower | v2.31.3 | ✓ |
| isAlpha | v2.31.3 | ✓ |
| isAlphaNum | v2.31.3 | ✓ |
| isDigit | v2.31.3 | ✓ |
| isOctDigit | v2.31.3 | ✓ |
| isHexDigit | v2.31.3 | ✓ |
| toUpper | v2.31.3 | ✓ |
| toLower | v2.31.3 | ✓ |
| toLocaleUpper | v2.31.3 | ✓ |
| toLocaleLower | v2.31.3 | ✓ |
| toCode | v2.31.3 | ✓ |
| fromCode | v2.31.3 | ✓ |

### Morphir.SDK.Decimal
| Function | Morphir-Elm Version Introduced | Supported |
|-------------------|--------------------------------|-----------|
| fromInt | v2.8.0 | ✓ |
| abs | v2.8.0 | ✓ |
| add | v2.8.0 | ✓ |
| bps | v2.8.0 | ✓ |
| compare | v2.8.0 | ✓ |
| div | v2.12.0 | ✓ |
| divWithDefault | v2.12.0 | ✓ |
| eq | v2.8.0 | ✓ |
| fromFloat | v2.8.0 | ✕ |
| fromInt | v2.8.0 | ✓ |
| fromString | v2.8.0 | ✓ |
| gt | v2.8.0 | ✓ |
| gte | v2.8.0 | ✓ |
| hundred | v2.8.0 | ✕ |
| thousand | v2.8.0 | ✓ |
| hundredth | v2.8.0 | ✕ |
| lt | v2.8.0 | ✓ |
| lte | v2.8.0 | ✓ |
| million | v2.8.0 | ✕ |
| millionth | v2.8.0 | ✕ |
| minusOne | v2.8.0 | ✓ |
| mul | v2.8.0 | ✓ |
| negate | v2.8.0 | ✓ |
| neq | v2.8.0 | ✓ |
| one | v2.8.0 | ✓ |
| round | v2.8.0 | ✓ |
| shiftDecimalLeft | v2.12.0 | ✓ |
| shiftDecimalRight | v2.12.0 | ✓ |
| sub | v2.8.0 | ✓ |
| tenth | v2.8.0 | ✕ |
| hundredth | v2.8.0 | ✕ |
| thousand | v2.8.0 | ✓ |
| thousandth | v2.8.0 | ✕ |
| millionth | v2.8.0 | ✕ |
| bps | v2.8.0 | ✓ |
| toString | v2.8.0 | ✕ |
| add | v2.8.0 | ✓ |
| sub | v2.8.0 | ✓ |
| negate | v2.8.0 | ✓ |
| mul | v2.8.0 | ✓ |
| div | v2.12.0 | ✓ |
| divWithDefault | v2.12.0 | ✓ |
| truncate | v2.8.0 | ✓ |
| round | v2.8.0 | ✓ |
| gt | v2.8.0 | ✓ |
| gte | v2.8.0 | ✓ |
| eq | v2.8.0 | ✓ |
| neq | v2.8.0 | ✓ |
| lt | v2.8.0 | ✓ |
| lte | v2.8.0 | ✓ |
| compare | v2.8.0 | ✓ |
| abs | v2.8.0 | ✓ |
| shiftDecimalLeft | v2.12.0 | ✕ |
| shiftDecimalRight | v2.12.0 | ✕ |
| zero | v2.8.0 | ✓ |
| one | v2.8.0 | ✓ |
| minusOne | v2.8.0 | ✓ |


### Morphir.SDK.Dict
Expand All @@ -233,13 +233,13 @@ This section lists the SDK types and functions currently supported in this versi
| values | v2.41.0 | ✓ |
| toList | v2.41.0 | ✓ |
| fromList | v2.41.0 | ✓ |
| map | v2.41.0 | ✕ |
| foldl | v2.41.0 | ✕ |
| foldr | v2.41.0 | ✕ |
| map | v2.41.0 | ✓ |
| foldl | v2.41.0 | ✓ |
| foldr | v2.41.0 | ✓ |
| filter | v2.41.0 | ✓ |
| partition | v2.41.0 | ✓ |
| union | v2.41.0 | ✕ |
| intersect | v2.41.0 | ✕ |
| union | v2.41.0 | ✓ |
| intersect | v2.41.0 | ✓ |
| diff | v2.41.0 | ✓ |
| merge | v2.41.0 | ✓ |

Expand Down Expand Up @@ -386,22 +386,22 @@ This section lists the SDK types and functions currently supported in this versi
| Function | Morphir-Elm Version Introduced | Supported |
|------------------|--------------------------------|-----------|
| diffInDays | v1.5.0 | ✓ |
| diffInWeeks | v1.5.0 | ✕ |
| diffInMonths | v1.5.0 | ✕ |
| diffInYears | v1.5.0 | ✕ |
| addDays | v1.5.0 | ✕ |
| diffInWeeks | v1.5.0 | ✓ |
| diffInMonths | v1.5.0 | ✓ |
| diffInYears | v1.5.0 | ✓ |
| addDays | v1.5.0 | ✓ |
| addWeeks | v1.5.0 | ✓ |
| addMonths | v1.5.0 | ✕ |
| addYears | v1.5.0 | ✕ |
| addMonths | v1.5.0 | ✓ |
| addYears | v1.5.0 | ✓ |
| fromCalendarDate | v2.87.0 | ✓ |
| fromISO | v2.4.0 | ✓ |
| fromOrdinalDate | v2.87.0 | ✓ |
| fromParts | v2.4.0 | ✓ |
| toISOString | v2.66.0 | ✕ |
| monthToInt | v2.87.0 | ✕ |
| toISOString | v2.66.0 | ✓ |
| monthToInt | v2.87.0 | ✓ |
| dayOfWeek | v2.84.2 | ✓ |
| isWeekend | v2.84.2 | ✕ |
| isWeekday | v2.84.2 | ✕ |
| isWeekend | v2.84.2 | ✓ |
| isWeekday | v2.84.2 | ✓ |
| year | v2.84.2 | ✓ |
| month | v2.84.2 | ✓ |
| monthNumber | v2.87.0 | ✓ |
Expand All @@ -423,8 +423,8 @@ This section lists the SDK types and functions currently supported in this versi
| addHours | v2.44.0 | ✓ |
| addMinutes | v2.44.0 | ✓ |
| addSeconds | v2.44.0 | ✓ |
| diffInHours | v2.44.0 | ✕ |
| diffInMinutes | v2.44.0 | ✕ |
| diffInHours | v2.44.0 | ✓ |
| diffInMinutes | v2.44.0 | ✓ |
| diffInSeconds | v2.44.0 | ✓ |
| fromISO | v2.44.0 | ✓ |

Expand All @@ -434,12 +434,11 @@ This section lists the SDK types and functions currently supported in this versi
|-------------|--------------------------------|-----------|
| withDefault | v2.84.2 | ✓ |
| map | v2.84.2 | ✓ |
| map2 | v2.84.2 | ✕ |
| map3 | v2.84.2 | ✕ |
| map4 | v2.84.2 | ✕ |
| map4 | v2.84.2 | ✕ |
| map2 | v2.84.2 | ✓ |
| map3 | v2.84.2 | ✓ |
| map4 | v2.84.2 | ✓ |
| andThen | v2.84.2 | ✓ |
| hasValue | v2.84.2 | ✕ |
| hasValue | v2.84.2 | ✓ |


### Morphir.SDK.Number
Expand Down

0 comments on commit d95e83c

Please sign in to comment.