Closed aforren1 closed 5 years ago
Currently, timestamps and data are stored equally.
obs = Pos(time=0, data=(0,1)) obs.time # 0 obs.data # (0, 1)
But it may feel a little more natural to have access like:
obs # (0, 1) obs.time # 0
i.e. the data takes the forefront.
Closed by 8c8c813b50ac0311f9f0b48d7cd8bd3f5e934065
Currently, timestamps and data are stored equally.
But it may feel a little more natural to have access like:
i.e. the data takes the forefront.