CharacterArray.st
changeset 15712 8aa66f2ff56c
parent 15656 82aca5063e96
child 15734 d89a293a56e7
child 18091 abbcac10730e
equal deleted inserted replaced
15711:48a314a68cb8 15712:8aa66f2ff56c
  4656 !
  4656 !
  4657 
  4657 
  4658 printfWith:arg1 with:arg2 with:arg3 with:arg4 with:arg5
  4658 printfWith:arg1 with:arg2 with:arg3 with:arg4 with:arg5
  4659     "Format and print the receiver with <argI> formatted in C style,
  4659     "Format and print the receiver with <argI> formatted in C style,
  4660      as specified in the Unix C-language manual page for printf(3).
  4660      as specified in the Unix C-language manual page for printf(3).
  4661      Return the resulting string."
  4661      Return the resulting string (i.e actually, this is more like an sprintf)."
  4662 
  4662 
  4663     ^ self printf:(Array with:arg1 with:arg2 with:arg3 with:arg4 with:arg5)
  4663     ^ self printf:(Array with:arg1 with:arg2 with:arg3 with:arg4 with:arg5)
  4664 
  4664 
  4665     "
  4665     "
  4666      Transcript showCR:('%d %05x %08o %b' printfWith:123 with:234 with:345 with:123)
  4666      Transcript showCR:('%d %05x %08o %b' printfWith:123 with:234 with:345 with:123)
  6431 ! !
  6431 ! !
  6432 
  6432 
  6433 !CharacterArray class methodsFor:'documentation'!
  6433 !CharacterArray class methodsFor:'documentation'!
  6434 
  6434 
  6435 version
  6435 version
  6436     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.511 2013-08-20 13:46:36 stefan Exp $'
  6436     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.512 2013-08-27 07:30:41 cg Exp $'
  6437 !
  6437 !
  6438 
  6438 
  6439 version_CVS
  6439 version_CVS
  6440     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.511 2013-08-20 13:46:36 stefan Exp $'
  6440     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.512 2013-08-27 07:30:41 cg Exp $'
  6441 ! !
  6441 ! !
  6442 
  6442 
  6443 
  6443 
  6444 CharacterArray initialize!
  6444 CharacterArray initialize!