Boolean.st
changeset 9448 d7fd5533b1cb
parent 9147 9e6e5c149778
child 9642 d537d90286d4
equal deleted inserted replaced
9447:6c4162883f37 9448:d7fd5533b1cb
   195 ! !
   195 ! !
   196 
   196 
   197 !Boolean methodsFor:'testing'!
   197 !Boolean methodsFor:'testing'!
   198 
   198 
   199 isBoolean
   199 isBoolean
   200 
   200     "Return true, because it is a boolean."
   201     "
       
   202     Return true, because it is a boolean.
       
   203     "
       
   204 
   201 
   205     ^ true.
   202     ^ true.
       
   203 
       
   204     "Modified: / 17-07-2006 / 14:14:24 / cg"
   206 !
   205 !
   207 
   206 
   208 isLiteral
   207 isLiteral
   209     "return true, if the receiver can be used as a literal constant in ST syntax
   208     "return true, if the receiver can be used as a literal constant in ST syntax
   210      (i.e. can be used in constant arrays)"
   209      (i.e. can be used in constant arrays)"
   230 ! !
   229 ! !
   231 
   230 
   232 !Boolean class methodsFor:'documentation'!
   231 !Boolean class methodsFor:'documentation'!
   233 
   232 
   234 version
   233 version
   235     ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.34 2006-02-20 11:26:13 cg Exp $'
   234     ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.35 2006-07-17 12:13:45 cg Exp $'
   236 ! !
   235 ! !