-
Notifications
You must be signed in to change notification settings - Fork 866
Expand file tree
/
Copy pathFieldCollection.cs
More file actions
49 lines (40 loc) · 1.07 KB
/
FieldCollection.cs
File metadata and controls
49 lines (40 loc) · 1.07 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System.Collections;
using System.Collections.Generic;
namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
internal class FieldCollection : IEnumerable<FieldCollection.Item>
{
public class Item
{
public FieldDescriptor field { get; }
public Item(FieldDescriptor field)
{
this.field = field;
}
}
readonly List<FieldCollection.Item> m_Items;
public FieldCollection()
{
m_Items = new List<FieldCollection.Item>();
}
public FieldCollection Add(FieldCollection fields)
{
m_Items.AddRange(fields);
return this;
}
public FieldCollection Add(FieldDescriptor field)
{
m_Items.Add(new Item(field));
return this;
}
public IEnumerator<FieldCollection.Item> GetEnumerator()
{
return m_Items.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
}