summaryrefslogtreecommitdiff
path: root/ddl/lib/LambdaCube.IR.RT.cs
blob: 4da373386e2e5f1c0336ed3d37a34bdbc5c6c33f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System.Collections.Generic;


namespace LambdaCube.IR {

  public struct Maybe<T>
  {
    public bool valid;
    public T data;
  }

  public struct V2<T>
  {
    public T x;
    public T y;
  }

  public struct V3<T>
  {
    public T x;
    public T y;
    public T z;
  }

  public struct V4<T>
  {
    public T x;
    public T y;
    public T z;
    public T w;
  }
}