Re: Random Access Files in Haskell

1999-07-09 Thread Sven Panne
Fergus Henderson wrote: On 08-Jul-1999, I stupidly typed: P.S.: The only response was from Ferguson, Who's this "Ferguson" dude? ;-) I hoped that this would be obvious, it's echo "Fergus Henderson" | sed 's/ ...//' = Ferguson It even works well with other people's names:

Re: Random Access Files in Haskell

1999-07-08 Thread Sven Panne
Damir Medak wrote: Any experiences or hints how to implement Random Access Files in Haskell? Nhc's Binary lib is a little overkill for random access (though it's quite nice for other stuff :-). In vanilla Haskell you can simply use hSeek/hGetPosn/hSetPosn, see

re: Random Access Files in Haskell

1999-07-08 Thread Colin . Runciman
A little while ago Damir Medak asked: | Any experiences or hints how to implement Random Access Files | in Haskell? The Binary library distributed with nhc13 and nhc98 supports random access. It can be used to implement indexed file structures of various kinds. See