#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sat, 04 Jun 2016 04:39:53 +0200
changeset 19935 feb65418c896
parent 19934 392ce4c308c6
child 19936 335d0ad2a9a8
#DOCUMENTATION by cg class: SignedByteArray added: #maxVal #minVal
SignedByteArray.st
--- a/SignedByteArray.st	Sat Jun 04 04:38:44 2016 +0200
+++ b/SignedByteArray.st	Sat Jun 04 04:39:53 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2016 by eXept Sofware AG
               All Rights Reserved
@@ -51,6 +49,20 @@
 "
 ! !
 
+!SignedByteArray class methodsFor:'queries'!
+
+maxVal
+    "the minimum value which can be stored in instances of me"
+
+    ^ 127
+!
+
+minVal
+    "the minimum value which can be stored in instances of me"
+
+    ^ -128
+! !
+
 !SignedByteArray methodsFor:'accessing'!
 
 basicAt:index