-
-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
coreChanges affecting the core logic or main components of the project, in root/internal/testing pkgChanges affecting the core logic or main components of the project, in root/internal/testing pkgdocumentationImprovements, corrections, or additions to documentation: markdowns, readme, docs/ website....Improvements, corrections, or additions to documentation: markdowns, readme, docs/ website....enhancementRequest or implementation of a new feature or improvement.Request or implementation of a new feature or improvement.operatorRelated to Operator logic or components (chainable transformation in reactive programming)Related to Operator logic or components (chainable transformation in reactive programming)pluginDevelopment or maintenance of a plugin or extension in plugins/ directory.Development or maintenance of a plugin or extension in plugins/ directory.
Description
Example:
// Current:
func Flatten[T any]() func(Observable[[]T]) Observable[T]
// Updated:
func Flatten[T any, Slice ~[]T]() func(Observable[Slice]) Observable[T]In tests:
type collection []int
s1 := collection{1, 2, 3}
s2:= collection{4, 5, 6}
ro.Pipe1(
ro.Just(s1, s2)
ro.Flatten(),
)Also update the contributing guide + the prototypes in docs/data/
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
coreChanges affecting the core logic or main components of the project, in root/internal/testing pkgChanges affecting the core logic or main components of the project, in root/internal/testing pkgdocumentationImprovements, corrections, or additions to documentation: markdowns, readme, docs/ website....Improvements, corrections, or additions to documentation: markdowns, readme, docs/ website....enhancementRequest or implementation of a new feature or improvement.Request or implementation of a new feature or improvement.operatorRelated to Operator logic or components (chainable transformation in reactive programming)Related to Operator logic or components (chainable transformation in reactive programming)pluginDevelopment or maintenance of a plugin or extension in plugins/ directory.Development or maintenance of a plugin or extension in plugins/ directory.