Skip to content
View jegnux's full-sized avatar

Organizations

@RxSwiftCommunity

Block or report jegnux

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. RxSwiftCommunity/RxGesture Public

    RxSwift reactive wrapper for view gestures

    Swift 1.4k 182

  2. BackedCodable Public

    Powerful property wrapper to back codable properties.

    Swift 492 8

  3. RxSwiftCommunity/RxModal Public

    Subscribe to your modal flows

    Swift 29 4

  4. Annotated Public

    Annotate your Strings

    Swift 30 1

  5. Needs Public

    Swift 6

  6. Result+Catch.swift
    1
    extension Result {
    2
        public func `catch`(_ handler: () throws -> Success) -> Result<Success, Error> {
    3
            flatMapError { _ in
    4
                .init { try handler() }
    5
            }