True.st
changeset 9000 74a49b889c33
parent 6906 87afb9964006
child 9224 487672a775ec
equal deleted inserted replaced
8999:f3fda66ea51e 9000:74a49b889c33
   142     (since the receiver is true, return true if the argument is also)"
   142     (since the receiver is true, return true if the argument is also)"
   143 
   143 
   144     ^ aBoolean
   144     ^ aBoolean
   145 !
   145 !
   146 
   146 
       
   147 implies:aBoolean
       
   148    "return true if receiver => argument"
       
   149 
       
   150     ^ aBoolean
       
   151 !
       
   152 
   147 not
   153 not
   148    "return true if the receiver is false, false otherwise
   154    "return true if the receiver is false, false otherwise
   149     (since the receiver is true, return false).
   155     (since the receiver is true, return false).
   150     Notice:
   156     Notice:
   151 	This method is open coded (inlined) by the compiler(s)
   157 	This method is open coded (inlined) by the compiler(s)
   181 ! !
   187 ! !
   182 
   188 
   183 !True class methodsFor:'documentation'!
   189 !True class methodsFor:'documentation'!
   184 
   190 
   185 version
   191 version
   186     ^ '$Header: /cvs/stx/stx/libbasic/True.st,v 1.20 2002-11-26 15:48:37 cg Exp $'
   192     ^ '$Header: /cvs/stx/stx/libbasic/True.st,v 1.21 2005-11-24 23:29:36 cg Exp $'
   187 ! !
   193 ! !