Lines Matching full:walk
2305 Given a ``Use*``, all we have to do is to walk till we get a stop and we either
2306 have a ``User`` immediately behind or we have to walk to the next stop picking
2364 > decode walk acc ('0':rest) = decode (walk + 1) (acc * 2) rest
2365 > decode walk acc ('1':rest) = decode (walk + 1) (acc * 2 + 1) rest
2366 > decode walk acc _ = walk + acc