Algae v0.12.2 Algae.Tree.Rose View Source

A tree with any number of nodes at each level

Examples

%Algae.Tree.Rose{
  rose: 42,
  tree: [
    %Algae.Tree.Rose{
      rose: "hi"
    },
    %Algae.Tree.Rose{
      tree: [
        %Algae.Tree.Rose{
          rose: 0.4
        }
      ]
    },
    %Algae.Tree.Rose{
      rose: "there"
    }
  ]
}

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Algae.Tree.Rose{rose: any, tree: [Algae.Tree.Rose.t]}

Link to this section Functions