Skip to content
View moyerr's full-sized avatar
Block or Report

Block or report moyerr

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. RichStringKit RichStringKit Public

    A declarative DSL for building rich text in Swift

    Swift 3

  2. An implementation of a sequence prod... An implementation of a sequence produced by interleaving two other sequences
    1
    struct InterleavedSequence<First: Sequence, Second: Sequence>: Sequence where First.Element == Second.Element {
    2
        let first: First
    3
        let second: Second
    4
    
                  
    5
        init(first: First, second: Second) {