Skip to content
View ryotapoi's full-sized avatar

Block or report ryotapoi

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. multipart/form-dataを送るためのヘルパー for swift
    1
    import Foundation
    2
    
                  
    3
    public struct MIMEType: RawRepresentable, CustomStringConvertible {
    4
        public var rawValue: String
    5
        public var description: String { rawValue }
  2. Swiftで高速にCRC32を求める。
    1
    import Foundation
    2
    import zlib
    3
    
                  
    4
    struct CRC32: Equatable, ExpressibleByIntegerLiteral, CustomStringConvertible {
    5
        typealias IntegerLiteralType = UInt32