Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ TODO
---
POTENTIAL FUTURE FEATURES (unordered)
* Something for context.Context? Support cancel() cb and Done() chans? fncontext package...
* seqio.DirOf(dirName), seqio.DirTreeOf(dirName) (recursive)
* RunesOf(string) Seq[rune]
* MakeChan collector func for Reduce()?
* MultiChan() Seq that selects on multiple chan T?
Expand Down
10 changes: 10 additions & 0 deletions examples/seqio_dir_example_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package examples

import (
"testing"
)

func TestExampleSeqioDirOperations(t *testing.T) {
// TODO: Create a sample directory structure for demonstration
// TODO: add an example
}
Loading