Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DirStreamAdapter ¶
type DirStreamAdapter[T any] struct { // contains filtered or unexported fields }
func NewDirStreamAdapter ¶
func NewDirStreamAdapter[T any](iter Iter[T], entryCallback func(T) fuse.DirEntry) *DirStreamAdapter[T]
func (*DirStreamAdapter[T]) Close ¶
func (adapter *DirStreamAdapter[T]) Close()
func (*DirStreamAdapter[T]) HasNext ¶
func (adapter *DirStreamAdapter[T]) HasNext() bool
type FilterIter ¶
type FilterIter[T any] struct { // contains filtered or unexported fields }
func NewFilterIter ¶
func NewFilterIter[T any](iter Iter[T], filterFunc func(T) bool) *FilterIter[T]
func (FilterIter[T]) Close ¶
func (f FilterIter[T]) Close()
func (FilterIter[T]) ForEach ¶
func (f FilterIter[T]) ForEach(callback func(T) error) error
func (FilterIter[T]) Next ¶
func (f FilterIter[T]) Next() (T, error)
type SliceIter ¶
type SliceIter[T any] struct { // contains filtered or unexported fields }
func NewSliceIter ¶
Click to show internal directories.
Click to hide internal directories.