Library zoo_std.queue_2__types

From zoo Require Import
  prelude.
From zoo.language Require Import
  typeclasses
  notations.
From zoo Require Import
  options.

Notation "'Null'" := (
  in_type "zoo_std.queue_2.node" 0
)(in custom zoo_tag
).
Notation "'Node'" := (
  in_type "zoo_std.queue_2.node" 1
)(in custom zoo_tag
).

Notation "'next'" := (
  in_type "zoo_std.queue_2.node.Node" 0
)(in custom zoo_field
).
Notation "'data'" := (
  in_type "zoo_std.queue_2.node.Node" 1
)(in custom zoo_field
).

Notation "'front'" := (
  in_type "zoo_std.queue_2.t" 0
)(in custom zoo_field
).
Notation "'back'" := (
  in_type "zoo_std.queue_2.t" 1
)(in custom zoo_field
).