Skip to content
View jegnux's full-sized avatar

Organizations

@RxSwiftCommunity
Block or Report

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

  1. RxSwiftCommunity/RxGesture RxSwiftCommunity/RxGesture Public

    RxSwift reactive wrapper for view gestures

    Swift 1.4k 182

  2. BackedCodable BackedCodable Public

    Powerful property wrapper to back codable properties.

    Swift 491 8

  3. RxSwiftCommunity/RxModal RxSwiftCommunity/RxModal Public

    Subscribe to your modal flows

    Swift 29 4

  4. Annotated Annotated Public

    Annotate your Strings

    Swift 30 1

  5. Needs Needs Public

    Swift 5

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