Skip to content

Commit

Permalink
lib version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
christianschmitz committed Oct 19, 2023
1 parent 925d7b6 commit 2f44f69
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
22 changes: 18 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
"author": "",
"license": "ISC",
"dependencies": {
"@hyperionbt/helios": "^0.16.0",
"@hyperionbt/helios": "^0.16.1",
"@jsdoc/ast": "^0.2.1",
"@jsdoc/parse": "^0.3.1",
"helios": "^0.0.5",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3"
}
Expand Down
2 changes: 1 addition & 1 deletion src/lang/generics.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ Similar to generic functions, the type parameters of generic structs and enums c
Typeclasses are used to constrain a type parameter of a generic function or user-type.

User-defined typeclasses aren't yet possible, there are however three builtin typeclasses:
* [`Any`](./builtins/any.md) (matches any data-type of function-type)
* [`Any`](./builtins/any.md) (matches any data-type or function-type)
* *empty* (this is the default, matches any data-type, but not function-types)
* [`Valuable`](./builtins/valuable.md) (matches any type with the `.value -> Value` getter, so [`TxInput`](./builtins/txinput.md), [`TxOutput`](./builtins/txoutput.md), and [`Value`](./builtins/value.md) itself)

0 comments on commit 2f44f69

Please sign in to comment.