implicit-parameters Questions
1
Solved
I have a scenario where I would like to call sum on a sequence of (Double, Double) tuples.
Ideally I would like to do something like the following:
implicit def toTupleNumeric[T](num: Numeric[T]) =...
Nikaniki asked 15/2, 2023 at 11:14
1
I have an enumeration type, e.g.
data MyType = A | B
And I want to be able to pass values of this type implicitly to my functions. I can do this using the ImplicitParams GHC extension like this:
t...
Fowl asked 2/9, 2020 at 10:27
1
Is there a way to create functions with implicit parameters or let bindings with implicit parameters using template haskell?
I.e. is it possible to generate a signature like this using template ha...
Date asked 10/1, 2013 at 17:43
1
Solved
I'm curious about the objections to implicit parameters discussed in the Functional Pearl: Implicit Configurations article by Kiselyov and Shan.
It is not sound to inline code (β-reduce) in the...
Garibull asked 28/4, 2012 at 12:23
1
© 2022 - 2025 — McMap. All rights reserved.