Aaron Fulkerson
05/22/2020, 10:14 PMThenesh
05/23/2020, 5:05 AMRichard Ward
05/25/2020, 8:34 AMfirst and after and you should get (first: 4, after 'd'):
['e','f','g','h']
When going backwards use last and before and then you should get the same (last: 4, before:'i'):
['e','f','g','h']Richard Ward
05/25/2020, 8:35 AMbefore and first (first: 4, before: 'i') then you'll end up with ['a,'b','c','d'].. not what you're looking for..