It would be useful if the Reader struct implemented the ReadSeeker interface. This would come in handy when trying to serve RAR files over HTTP with http.ServeContent. This is useful if the content that is archived is a video file; providing a ReadSeeker would allow players such as VLC to seek in the video.
It would be useful if the Reader struct implemented the
ReadSeekerinterface. This would come in handy when trying to serve RAR files over HTTP with http.ServeContent. This is useful if the content that is archived is a video file; providing aReadSeekerwould allow players such as VLC to seek in the video.