total_slots: | 1048576 |
max_distance | 3 |
allocated | 32.00 Mb |
occupation_ratio | 0.95 |
add_1M: | 88.94 ms |
iterate_1M: | 0.00s |
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
using System; | |
using System.Runtime.InteropServices; | |
using static LowSharp; | |
namespace LLVM | |
{ | |
#region Enums | |
//LLVMVerifierFailureAction | |
public enum LLVMVerifierFailureAction : Int32 | |
{ |
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
// This code is distributed under MIT license. Copyright (c) 2013 George Mamaladze | |
// See license.txt or http://opensource.org/licenses/mit-license.php | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; |
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
using System; | |
using System.Runtime.InteropServices; | |
using SharpC; | |
namespace FlecsSharp | |
{ | |
#region Enums | |
//EcsSystemKind | |
public enum EcsSystemKind : Int32 | |
{ |
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
using System; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
namespace SharpC | |
{ | |
partial struct CharPtr | |
{ | |
public CharPtr(IntPtr ptr) => this.Ptr = ptr; | |
IntPtr Ptr { get; } |
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
using System; | |
using System.Runtime.InteropServices; | |
using SharpC; | |
namespace BakeSharp | |
{ | |
#region Enums | |
//kind | |
public enum Kind : Int32 | |
{ |
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
module Glfw; | |
@nogc: | |
nothrow: | |
//Enums | |
enum MouseButton | |
{ | |
Btn1 = 0,//0 | |
Btn2 = 1,//1 | |
Btn3 = 2,//2 |
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
module FlecsSharp; | |
@nogc: | |
nothrow: | |
//Enums | |
// ecs_type_filter_kind_t: https://github.com/SanderMertens/flecs/blob/612c28635497c1749f8f3e84fa24eabfea58e05a/include/flecs.h#L161 | |
enum TypeFilterKind : int | |
{ | |
Default = 0, | |
All = 1, |
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
/* | |
* Copyright 2010-2019 Branimir Karadzic. All rights reserved. | |
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause | |
*/ | |
#ifndef NORMALIZE_H | |
#define NORMALIZE_H | |
#define PP_TO_STRING(v) #v |
a->b