Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Support generation of recursive data structures #83

Open
jcornaz opened this issue Oct 26, 2019 · 0 comments
Open

Support generation of recursive data structures #83

jcornaz opened this issue Oct 26, 2019 · 0 comments
Labels
up for grabs Good for newcomers

Comments

@jcornaz
Copy link
Owner

jcornaz commented Oct 26, 2019

One should be able easily and safely create a generator for a data-structure such as :

sealed class Tree {
  data class Branch(left: Tree, right: Tree) : Tree()
  object Leaf : Tree()
}

Maybe this is already possible with the current API. In which case the only thing to do is to add an example in the documentation.

If it is not already possible, then the necessary utilities should be provided.

@jcornaz jcornaz added this to the 0.3 milestone Nov 19, 2019
@jcornaz jcornaz removed this from the 0.3 milestone Dec 13, 2019
@jcornaz jcornaz added the up for grabs Good for newcomers label Oct 8, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
up for grabs Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant