Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
既存の文字列を列挙型にキャストしたい (列挙型として読み込まない)。これどうやってするの?
例:
-- type declaration type Hands is (Left, Right); -- code body Hand : Hands; Hand := Hands'Value("Left"); -- yields `Left`