-
Function Abstraction| Description|Status
------------ | ------- | -----
`def f: a = ...` | Top-level function from `Unit` to `a`. | 💜 (deprecated)
`def f(): a = ...` | Top-level function from `Uni…
-
I thought you were against this:
```
Float x
```
Why not use he universally accepted correct way to do this, namely
```
var x : Float
```
You can leave out the `var` if you want, but you HAVE …
-
I think `colorview(A, C)` would facilitate piping if there is a set default parameter.
E.g. let's say C has a sensible default type based on `size(channelview(A),1)`, we could then do:
```
img = lo…
-
The PR #1197 changes the internal representation of curried and uncurried functions. Before every function was curried, but now the strategy is a bit richer, so top-level definitions are never curried…
-
### Summary
Currying brings a very natural way of using functions to many functional programming languages, and curried-by-default languages can be seen as more expressive than other languages. For E…
-
Hi, thank you for this very promising library!
I'm trying to follow the example and use the handy `variantModule` function, but it seems like it's missing?
I'm using the following import statement…
-
I think, it would be nice to define `isa(T)` to return a curried version, because it's consistent with similar functions like `in` and often useful in `any` or `all`. It's a builtin function, so this …
-
I'd like to propose augmenting Links with SML-style function definition groups. This proposal is entirely about improving the quality of life for Links programmers.
## What: Function definition gro…
-
Hey!
I'm playing around your superb library but some declaration issues are present:
```ts
import { Unit, div } from "uom-ts";
type Meters = Unit;
type Seconds = Unit;
type MetersPerSecond =…
s373r updated
4 years ago
-
## Feature Description
Right now `proxy.Proxy` exposes a `func Dial(instance string) (net.Conn, error)` that is registered using [`mysql.RegisterDial(...)`](https://github.com/go-sql-driver/mysq…