Skip to content

Instantly share code, notes, and snippets.

View DnV1eX's full-sized avatar

Alexey Demin DnV1eX

  • Canada
View GitHub Profile
@pofat
pofat / Kind.swift
Created March 12, 2021 15:49
Swift Struct Metadata
// Kind of type
public enum Kind {
case `struct`
case `enum`
case optional
case opaque
case tuple
case function
case existential
case metatype