GithubHelp home page GithubHelp logo

Comments (3)

jcpetruzza avatar jcpetruzza commented on May 23, 2024 1

IMO it would also be completely reasonable to actually define and export it in barbies itself if the language extensions aren't too problematic.

Done in 2.0.5.0!

from barbies.

jcpetruzza avatar jcpetruzza commented on May 23, 2024

Good question. I think one could use a higher-kinded version of the (&) class in the constraints package. Something like:

{-# LANGUAGE ConstraintKinds, UndecidableSuperClasses #-}
module Foo where

import GHC.Generics
import Barbies

class (c a, d a) => (c & d) a where
instance (c a, d a) => (c & d) a where

blah :: (Eq a, Show a, Enum a) => Maybe a -> [a]
blah = maybe [] pure

convert :: Foo Maybe -> Foo []
convert = bmapC @(Eq & Show & Enum) blah

data Foo f = Foo (f Int)
  deriving Generic
  deriving (FunctorB, ConstraintsB)

deriving instance AllBF Show f Foo => Show (Foo f)

Would that work for you?

from barbies.

MichaelXavier avatar MichaelXavier commented on May 23, 2024

That worked great, thank you! I had tried the one from the constraints package but it wasn't clicking with me that I needed a fully applied version. It may be worth adding this somewhere in the docs and mentioning that you can use it in the constraint-oriented parts of the barbies API. IMO it would also be completely reasonable to actually define and export it in barbies itself if the language extensions aren't too problematic.

from barbies.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.