initial commits

master
Charles Iliya Krempeaux 2022-12-14 03:44:40 -08:00
parent 3a409f7dd3
commit ae37e4b198
1 changed files with 3 additions and 2 deletions

View File

@ -100,11 +100,12 @@ func (receiver *Content) Closed() bool {
return receiver.closed return receiver.closed
} }
// Read makes strfs.Content fit the io.Reader interface.
//
// Read reads up to len(p) bytes into 'p'. // Read reads up to len(p) bytes into 'p'.
// Read returns the number of bytes actually read, and any errors it encountered. // Read returns the number of bytes actually read, and any errors it encountered.
// //
// Read makes strfs.Content fit the io.Reader interface.
//
// Example usage: // Example usage:
// //
// var content strfs.Content = strfs.CreateContent("ABCDEFGHIJKLMNOPQRSTUVWXYZ") // var content strfs.Content = strfs.CreateContent("ABCDEFGHIJKLMNOPQRSTUVWXYZ")