summaryrefslogtreecommitdiffstats
path: root/src/Numeric.vala
blob: c4f8c071e4ea2538ccf3a23dd9a79d9e68a4e9c2 (plain)
1
2
3
4
5
6
7
8
9
namespace Eva {
  public interface Numeric : Term {
    public abstract int int_value { get; }
    public abstract uint uint_value { get; }
    public abstract long long_value { get; }
    public abstract ulong ulong_value { get; }
    public abstract double double_value { get; }
  }
}