This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const builtin = @import("builtin"); | |
const TypeId = builtin.TypeId; | |
const TypeInfo = builtin.TypeInfo; | |
const std = @import("std"); | |
const mem = std.mem; | |
const assert = std.debug.assert; | |
// @TODO Add const SelfType variant, perhaps SelfType(bool)? (to actually distinguish between const and non const methods) | |
pub const SelfType = *@OpaqueType(); |