Win32 API 日本語リファレンス
ホームAI.MachineLearning.WinML › MLOperatorSchemaEdgeTypeFormat

MLOperatorSchemaEdgeTypeFormat

列挙型
基底型i4

メンバー 2

名前10進16進
EdgeDescription00x0
Label10x1

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum MLOperatorSchemaEdgeTypeFormat : int {
    EdgeDescription = 0,
    Label = 1
} MLOperatorSchemaEdgeTypeFormat;
public enum MLOperatorSchemaEdgeTypeFormat : int
{
    EdgeDescription = 0,
    Label = 1,
}
Public Enum MLOperatorSchemaEdgeTypeFormat As Integer
    EdgeDescription = 0
    Label = 1
End Enum
import enum

class MLOperatorSchemaEdgeTypeFormat(enum.IntEnum):
    EdgeDescription = 0
    Label = 1
// MLOperatorSchemaEdgeTypeFormat
pub const EdgeDescription: i32 = 0;
pub const Label: i32 = 1;
// MLOperatorSchemaEdgeTypeFormat
const (
	EdgeDescription int32 = 0
	Label int32 = 1
)
const
  EdgeDescription = 0;
  Label = 1;
// MLOperatorSchemaEdgeTypeFormat
pub const EdgeDescription: i32 = 0;
pub const Label: i32 = 1;
const
  EdgeDescription* = 0
  Label* = 1
enum MLOperatorSchemaEdgeTypeFormat : int {
    EdgeDescription = 0,
    Label = 1,
}
#define global EdgeDescription 0x0
#define global Label           0x1