Skip to content
View TizianoCoroneo's full-sized avatar
👹
Playing type-level Sudoku
👹
Playing type-level Sudoku

Organizations

@TicketSwap @ComputerScienceEducation
Block or Report

Block or report TizianoCoroneo

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

    A library to parse deeplinks and their arguments using String interpolation.

    Swift 49 5

  2. Type level FizzBuzz in Swift 4.2 Type level FizzBuzz in Swift 4.2
    1
    import Foundation
    2
    
                  
    3
    var str = "Hello, Fizz Buzz"
    4
    
                  
    5
    func namespace(_ f: () -> ()) -> () { f() }
  3. Swift 5.10 - Cast [Any] to a tuple Swift 5.10 - Cast [Any] to a tuple
    1
    private func cast<each Result>(
    2
        _ values: [Any],
    3
        to r: (repeat each Result).Type = (repeat each Result).self
    4
    ) throws -> (repeat each Result) {
    5
        var count = 0