Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/fogleman/nes
/ Step
Method
Step
nes/filter.go:50–57 ·
view source on GitHub ↗
(x float32)
Source
from the content-addressed store, hash-verified
48
type
FilterChain []Filter
49
50
func
(fc FilterChain) Step(x float32) float32 {
51
if
fc != nil {
52
for
i :=
range
fc {
53
x = fc[i].Step(x)
54
}
55
}
56
return
x
57
}
Callers
nothing calls this directly
Calls
1
Step
Method · 0.65
Tested by
no test coverage detected