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

Block or report hcrub

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. Swift Image Manager Singleton Swift Image Manager Singleton
    1
    import UIKit
    2
    
                  
    3
    /// Data Manager error types.
    4
    ///
    5
    /// - noData:           No valid data was received.
  2. Extension for checking if a String i... Extension for checking if a String is capitalized in Swift 3.0+.
    1
    extension String {
    2
        func isCapitalized() -> Bool {
    3
            guard self.characters.count > 0 else {
    4
                return false
    5
            }
  3. Interface for determining and scopin... Interface for determining and scoping optional Associated Types
    1
    /// Interface representing an optionally nil value type.
    2
    protocol OptionalType: ExpressibleByNilLiteral {
    3
        /// The boxed optional type.
    4
        associatedtype Wrapped
    5
    }
  4. Regular Expression "split" Implement... Regular Expression "split" Implementation written for Swift 3.0+.
    1
    // NSRegularExpression+Split.swift
    2
    //
    3
    // Verbatim ObjC->Swift port originating from https://github.com/bendytree/Objective-C-RegEx-Categories
    4
    
                  
    5
    extension NSRegularExpression {