tim2CF
tim2CF
Hello! I would like to discuss possibility of `dialyzer` source code module attribute support in `gradualizer`. The reason for this are some places, for example in elixir core, like this:...
Is it possible to provide some config with additional separators? In Haskell we are using space as separator between function and argument, example: ```haskell add x y = x +...
I have ExAdmin form like this (simplified real example) ``` register_resource Role do action_items except: [:delete] filter [:id, :name] form data do inputs do input data, :name inputs :reactions, fields:...
In some cases in development process we should deal with empty enums. For example if actual business logic is not implemented yet, but we know for sure that there will...
```elm type maybe 'a = Just 'a | Nothing val (>>=) 'a 'b : fn (maybe 'a) (fn 'a -> maybe 'b) -> (maybe 'b) let (>>=) x f =...
```elm type maybe 'a = Just 'a | Nothing val (>>=) 'a 'b : fn (maybe 'a) (fn 'a -> maybe 'b) -> (maybe 'b) let (>>=) (Nothing) _ =...
example (Memoize 1.3.0) suppresses obvious compiler warnings ```elixir defmodule Greetings do use Memoize defmemo hello(name) when is_binary(name) do :ok = DoesNotExist.foo() "Hello, #{name}!" end end ```
Are there any handlers/hooks/middlewares to work with untyped serialized request/response grpc payloads? Motivation is to do efficient signing and signature verification of request/response. Signature might be passed as metadata. Without...
Is it possible? Any examples?
Hi! I'm using `async` package to manage my threads. In many places `race` function is very handy. For example: ```haskell res