FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
luaplot/plotiterator.lua at master · thewizardplusplus/luaplot · GitHub
thewizardplusplus
/
luaplot
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
luaplot
/
plotiterator.lua
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (42 loc) · 1.21 KB
Breadcrumbs
luaplot
/
plotiterator.lua
Copy path
File metadata and controls
52 lines (42 loc) · 1.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
---
--
@
classmod
PlotIterator
local
middleclass
=
require
(
"
middleclass
"
)
local
assertions
=
require
(
"
luatypechecks.assertions
"
)
local
Iterable
=
require
(
"
luaplot.iterable
"
)
local
Plot
=
require
(
"
luaplot.plot
"
)
---
--
@table instance
--
@
tfield
Plot _plot
--
@
tfield
func _transformer func(index: number, point: number): any
local
PlotIterator
=
middleclass
(
"
PlotIterator
"
)
PlotIterator
:
include
(
Iterable
)
---
--
@
function
new
--
@
tparam
Plot plot
--
@
tparam
func transformer func(index: number, point: number): any
--
@
treturn
PlotIterator
function
PlotIterator
:
initialize
(
plot
,
transformer
)
assertions
.
is_instance
(
plot
,
Plot
)
assertions
.
is_callable
(
transformer
)
self
.
_plot
=
plot
self
.
_transformer
=
transformer
end
---
--
It is used for iterating over plot points in Lua 5.3+.
--
@
tparam
number index [1, ∞)
--
@
treturn
number
function
PlotIterator
:
__index
(
index
)
assertions
.
is_number
(
index
)
local
point
=
self
.
_plot
[
index
]
if
point
==
nil
then
return
end
return
self
.
_transformer
(
index
,
point
)
end
---
--
It is used for iterating over plot points in Lua 5.2.
--
@
function
__ipairs
--
@
treturn
iterators.inext iterator function
--
@
treturn
PlotIterator self
--
@
treturn
number always zero
return
PlotIterator
Back
|
FazBrowse Home
|
New Git URL