Skip to content

Instantly share code, notes, and snippets.

@yukihane
Created October 27, 2022 15:04
Show Gist options
  • Save yukihane/caf78e607d5155d324cb0dbd9f3f33be to your computer and use it in GitHub Desktop.
Save yukihane/caf78e607d5155d324cb0dbd9f3f33be to your computer and use it in GitHub Desktop.
title date draft tags
Project Valhalla Memo
2022-10-23 18:28:19 +0900
true
java
kotlin

用語

Inline Types

以前は "Value Types" と呼ばれていましたが、 "inline-types" にリネームされました。 (2019年4月頃?)

ユーザーからすると: クラスのように書き、intのように動く

ユースケース: 数値計算、代数的データ型、タプル、カーソル、…​

L-World

プロジェクト名(L-World project)。

primitive wrapper classes

Kotlin の inline classes

value class Password(private val s: String)

1.3 で Alpha 版、 1.4.30 で Beta 版、 1.5.0 で正式版として導入された。

1.3 時点での書き方は以下。コンパイルオプション -XXLanguage:+InlineClasses が必要。

inline class Name(internal val value: String)

inline classes は、 value classes のサブセットとして

@yukihane
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment