aboutsummaryrefslogtreecommitdiff
path: root/node_modules/utila/scripts/coffee/lib/array.coffee
blob: 429bf6dc69e573629d75800a85b7f6a60ce32142 (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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
module.exports = array =

	###
	Tries to turn anything into an array.
	###
	from: (r) ->

		Array::slice.call r

	###
	Clone of an array. Properties will be shallow copies.
	###
	simpleClone: (a) ->

		a.slice 0

	shallowEqual: (a1, a2) ->

		return no unless Array.isArray(a1) and Array.isArray(a2) and a1.length is a2.length

		for val, i in a1

			return no unless a2[i] is val

		yes

	pluck: (a, i) ->

		return a if a.length < 1


		for value, index in a

			if index > i

				a[index - 1] = a[index]

		a.length = a.length - 1

		a

	pluckItem: (a, item) ->

		return a if a.length < 1


		removed = 0

		for value, index in a

			if value is item

				removed++

				continue

			if removed isnt 0

				a[index - removed] = a[index]

		a.length = a.length - removed if removed > 0

		a

	pluckOneItem: (a, item) ->

		return a if a.length < 1

		reached = no

		for value, index in a

			if not reached

				if value is item

					reached = yes

					continue

			else

				a[index - 1] = a[index]

		a.length = a.length - 1 if reached

		a

	pluckByCallback: (a, cb) ->

		return a if a.length < 1

		removed = 0

		for value, index in a

			if cb value, index

				removed++

				continue

			if removed isnt 0

				a[index - removed] = a[index]

		if removed > 0

			a.length = a.length - removed

		a

	pluckMultiple: (array, indexesToRemove) ->

		return array if array.length < 1

		removedSoFar = 0

		indexesToRemove.sort()

		for i in indexesToRemove

			@pluck array, i - removedSoFar

			removedSoFar++

		array

	injectByCallback: (a, toInject, shouldInject) ->

		valA = null

		valB = null

		len = a.length

		if len < 1

			a.push toInject

			return a


		for val, i in a

			valA = valB

			valB = val

			if shouldInject valA, valB, toInject

				return a.splice i, 0, toInject

		a.push toInject

		a

	injectInIndex: (a, index, toInject) ->

		len = a.length

		i = index

		if len < 1

			a.push toInject

			return a

		toPut = toInject

		toPutNext = null

		`for(; i <= len; i++){

			toPutNext = a[i];

			a[i] = toPut;

			toPut = toPutNext;

		}`

		# a[i] = toPut

		null