Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
TizianoCoroneo
Follow
Playing type-level Sudoku

TizianoCoroneo TizianoCoroneo

Playing type-level Sudoku
Senior iOS Software Engineer. Apple Developer Academy graduate. Purely functional animal.

Organizations

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
TizianoCoroneo/README.md

Pinned Loading

  1. Deeplink Deeplink Public

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

    Swift 61 6

  2. Type level FizzBuzz in Swift 5.10 Type level FizzBuzz in Swift 5.10
    1 func namespace(_ f: () -> ()) -> () { f() }
    2
    3 // A fizz buzz implementation in Swift
    4 namespace {
    5 let range = 1...100
  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