Seekable
Seekable permits random access read and write
Insert
Inserts data anywhere in the file/seekable object
import scalax.io._
// see codec example for why codec is required
implicit val codec = Codec.UTF8
val someFile: Seekable = Resource.fromFileString("someFile")
someFile.insert(3,List[Byte](3,2,1))