ddddxxx

Results 8 issues of ddddxxx

See [Combine Compatible Package](https://github.com/cx-org/CombineX/wiki/Combine-Compatible-Package) ## Advantage - Current clients remains unaffected. - Apple's Combine is used by default whenever possible. No additional dependency is introduced. - OpenCombine is still available....

Failing test case here: https://github.com/cx-org/CombineX/blob/master/Tests/CXInconsistentTests/FailingTests/FailingSubjectSpec.swift

bug

`Publishers.FlatMap` should request `.unlimited` demand instead of `.max(1)` if itself received unlimited demand. Failing test case here: https://github.com/cx-org/CombineX/blob/master/Tests/CXInconsistentTests/FailingTests/FailingFlatMapSpec.swift

bug

The following code crashes, because the matched string breaks extended grapheme cluster. The [range of swift string](https://github.com/sharplet/Regex/blob/master/Source/Regex/MatchResult.swift#L94) is invalid. ```swift let source = "\r\n" let regex = Regex("\n") let match...