-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathFloatCollection.cs
107 lines (98 loc) · 3.28 KB
/
FloatCollection.cs
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
using System;
using System.Collections;
using System.ComponentModel;
namespace FastReport.Utils
{
/// <summary>
/// Represents a collection of float values.
/// </summary>
[TypeConverter(typeof(FastReport.TypeConverters.FloatCollectionConverter))]
public class FloatCollection : CollectionBase
{
/// <summary>
/// Gets or sets the value at the specified index.
/// </summary>
/// <param name="index">Index of a value.</param>
/// <returns>The value at the specified index.</returns>
public float this[int index]
{
get { return (float)List[index]; }
set { List[index] = value; }
}
/// <summary>
/// Adds the specified values to the end of this collection.
/// </summary>
/// <param name="range"></param>
public void AddRange(float[] range)
{
foreach (float t in range)
{
Add(t);
}
}
/// <summary>
/// Adds a value to the end of this collection.
/// </summary>
/// <param name="value">Value to add.</param>
/// <returns>Index of the added value.</returns>
public int Add(float value)
{
return List.Add(value);
}
/// <summary>
/// Inserts a value into this collection at the specified index.
/// </summary>
/// <param name="index">The zero-based index at which value should be inserted.</param>
/// <param name="value">The value to insert.</param>
public void Insert(int index, float value)
{
List.Insert(index, value);
}
/// <summary>
/// Removes the specified value from the collection.
/// </summary>
/// <param name="value">Value to remove.</param>
public void Remove(float value)
{
int i = IndexOf(value);
if (i != -1)
List.RemoveAt(i);
}
/// <summary>
/// Returns the zero-based index of the first occurrence of a value.
/// </summary>
/// <param name="value">The value to locate in the collection.</param>
/// <returns>The zero-based index of the first occurrence of value within the entire collection, if found;
/// otherwise, -1.</returns>
public int IndexOf(float value)
{
for (int i = 0; i < Count; i++)
{
if (Math.Abs(this[i] - value) < 0.01)
return i;
}
return -1;
}
/// <summary>
/// Determines whether a value is in the collection.
/// </summary>
/// <param name="value">The value to locate in the collection.</param>
/// <returns><b>true</b> if value is found in the collection; otherwise, <b>false</b>.</returns>
public bool Contains(float value)
{
return IndexOf(value) != -1;
}
/// <summary>
/// Copies values from another collection.
/// </summary>
/// <param name="source">Collection to copy from.</param>
public void Assign(FloatCollection source)
{
Clear();
foreach (float f in source)
{
Add(f);
}
}
}
}