Ruslan Ustitc

Results 10 comments of Ruslan Ustitc

Having another issue with the same sample during compile: `@JvmInline annotation is only applicable to value classes` What I have tried: - Launched same code in [refined-types-compiler-plugin-demo](https://github.com/arrow-kt/arrow-meta-examples/tree/main/demos/refined-types-compiler-plugin-demo) module of arrow-meta-examples...

It would be a nice feature, because now it's not even obvious how to [make a clone of html element](https://stackoverflow.com/questions/71226697/make-a-clone-of-html-element-in-hyperscript). You can do: ``` html Test ``` but generated items...

@rhuss reproduced same issue in two cases by: 1. Not using `` in the `` 2. Using `container_name` in docker-compose and `` in pom.xml at the same time Hope this...

This function might be useful also for `dict` and `set`. Please have a look at the related PR: https://github.com/gleam-lang/stdlib/pull/617. Thanks!

🤔 I see your point. I don't have any practical case for those functions; my motivation was driven by consistency. I aimed to create similar functions for all data structures....

I had similar idea, but the only thing that stopped me is a returned `Either` type. Would it be clear for clients of the library, that left part, and string...

We can mimic `require` api from std. We already have `ensure(condition: Boolean)` and now we need to add `ensure(condition: Boolean, lazyMessage: () -> String)`. In that case clients won't need...

Thanks for an example @CLOVIS-AI, haven't thought about such usage before 🤔 There are actually two problems 1. Factory methods of `Exact` can't work with multiple input values. So we...

I see your point, actually you are right, we will need something like `SuspendExact` with `suspend` methods, otherwise we won't be able to introduce impure validation from `exact` context. But...

> ... the usage of Exact only intended for single parameter types like value classes and compose complexer types out of it You are right, Exact is designed around the...