grappa icon indicating copy to clipboard operation
grappa copied to clipboard

Introduce BooleanVar, IntVar, LongVar, DoubleVar?

Open fge opened this issue 11 years ago • 0 comments

A Var is a rather heavy beast:

  • since it allows for nulls, instead of a light ArrayDeque, we need a LinkedList;
  • the initial value is itself a generic class.

Starting with 1.1.0, Var will not allow for nulls (there will be a NullableVar for that). But the primitive case will not be solved.

Another motivation is issue #17.

fge avatar Nov 25 '14 09:11 fge