zio / zio-constraintless   0.3.2

Website GitHub

An advanced library for building DSLs that allows defering the existence of type class instances until interpretation.

Scala versions: 3.x 2.13 2.12 2.11
Scala.js versions: 1.x
Scala Native versions: 0.4

ZIO Constraintless

ZIO Constraintless allows you to build programs as mere descriptions with maximum polymorphism, maximum modularity, zero abstraction leakage, and zero casting.

Development CI Badge Sonatype Releases Sonatype Snapshots javadoc ZIO Constraintless

Introduction

It is a Scala take on the following paper in Haskell, on parametrising the program with logical constraints at every node, without compromising modularity

http://www.doc.ic.ac.uk/~wlj05/files/Deconstraining.pdf

An excerpt from the paper:

"The key principle that underpins our idea is that implementation- specific constraints should be imposed at the point of use of a data type, not at the point of definition, i.e. it embodies the established principle that an interface should be separated from its implementation(s)."

Installation

libraryDependencies += "dev.zio" %% "constraintless" % "0.3.2"

Example

Example: https://github.com/zio/zio-constraintless/blob/master/examples/src/main/scala/zio/constraintless/examples/Expr.scala

Context

The key to many inspectable programs such as an execution planner, a configuration DSL etc is the basic concept of "programs as descriptions", but this idea comes with limitations.

This description (or data) can easily turn out to be a Generalised ADT that can be recursive, such that compiler has to traverse through the unknown types (existential) and for the compiler to do any advanced/useful stuff with it, it needs to know more about these types.

The obvious implication of having to handle "unknown" is that, the data should hold on to informations as constraints (that are relevant to implementation) on types at the definition site. A possible solution is to compromise on parametric polymorphism, or fall back to relying unsafe/safe (relative) casting (asInstanceOf).

This naive approach imposes modularity issues, and possible runtime crashes. The reasonsing and solution is given in the above paper, and this project solves the exact problem in scala.

Why not the Hughes schema?

It doesn't allow you to have a compiler with multiple constraints.

A few excerpts from the paper on why it doesn't work:

class Typeable p a valueP :: a  p a
newtype SM a = SM {fromSM :: Int}

instance IntBool a  Typeable SM a where
  valueP = SM · toInt
newtype Pretty a = Pretty {fromPretty :: String}

instance Show a  Typeable Pretty a where valueP = Pretty · show
data Exp p a where
ValueE::Typeable p a  a  Exp p a

CondE ::Expp BoolExp p a  Exp p a  Exp p a 

EqE :: Eq a  Exp p a  Exp p a  Exp p Bool
pretty :: Exp Pretty a  String // works
compileSM :: Exp SM a  String // works

However, now suppose that we wish to apply the two functions to the same expression, as in:

f :: Exp p a  . . .
f e = ...(compileSM e)...(pretty e)..

and that's impossible

Documentation

Learn more on the ZIO Constraintless homepage!

Contributing

For the general guidelines, see ZIO contributor's guide.

Code of Conduct

See the Code of Conduct

Support

Come chat with us on Badge-Discord.

License

License