We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
構文案
var x: Option<number> = null; // cast interfaces var player: Char = Char { }; var y: Option<Drawable & Position> = player; y = null;
nullリテラルとOption<T>型の追加。 Optionを明示しない限りはnull値を許容しない。 Option<T>とするのでGeneric型(インターフェース)もサポートする方が自然?
Option<T>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
構文案
nullリテラルと
Option<T>
型の追加。Optionを明示しない限りはnull値を許容しない。
Option<T>
とするのでGeneric型(インターフェース)もサポートする方が自然?The text was updated successfully, but these errors were encountered: