summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-02-16 20:13:02 +0530
committerGitHub <noreply@github.com>2019-02-16 20:13:02 +0530
commit884d2707d2c9c1722a7c3ee53a07e367909ee2cc (patch)
treea629bd4bac626fe2f8e5fa0da2ec57042b9e359c
parent47e2268a2af3d23e81923fc3e47821236531a94d (diff)
parent520ce46ab55f52f6e58841354f51722ec8a8387e (diff)
Merge pull request #3474 from zlotnleo/patch-1
[crystal/en] Add new Int128 and UInt128 types
-rw-r--r--crystal.html.markdown24
1 files changed, 13 insertions, 11 deletions
diff --git a/crystal.html.markdown b/crystal.html.markdown
index 8210b443..9fae9da3 100644
--- a/crystal.html.markdown
+++ b/crystal.html.markdown
@@ -25,17 +25,19 @@ true.class #=> Bool
1.class #=> Int32
-# Four signed integer types
-1_i8.class #=> Int8
-1_i16.class #=> Int16
-1_i32.class #=> Int32
-1_i64.class #=> Int64
-
-# Four unsigned integer types
-1_u8.class #=> UInt8
-1_u16.class #=> UInt16
-1_u32.class #=> UInt32
-1_u64.class #=> UInt64
+# Five signed integer types
+1_i8.class #=> Int8
+1_i16.class #=> Int16
+1_i32.class #=> Int32
+1_i64.class #=> Int64
+1_i128.class #=> Int128
+
+# Five unsigned integer types
+1_u8.class #=> UInt8
+1_u16.class #=> UInt16
+1_u32.class #=> UInt32
+1_u64.class #=> UInt64
+1_u128.class #=> UInt128
2147483648.class #=> Int64
9223372036854775808.class #=> UInt64