# HG changeset patch # User Claus Gittinger # Date 1551568237 -3600 # Node ID b64bd0c74a0385758053e337e6a54e8923bd426b # Parent b82ae2dcb9b9c773c55bb5f8c8e9ca56644657df #DOCUMENTATION by cg class: Object comment/format in: #isSequenceable diff -r b82ae2dcb9b9 -r b64bd0c74a03 Object.st --- a/Object.st Sun Mar 03 00:10:14 2019 +0100 +++ b/Object.st Sun Mar 03 00:10:37 2019 +0100 @@ -23,13 +23,13 @@ ErrorSignal FinalizationLobby HaltSignal IndexNotFoundSignal InfoPrinting InformationSignal InternalErrorSignal KeyNotFoundSignal MessageNotUnderstoodSignal - NonIntegerIndexSignal NonWeakDependencies NotFoundSignal + NonIntegerIndexSignal NonWeakDependencies NotFoundSignal Nothing OSSignalInterruptSignal ObjectAttributes ObjectAttributesAccessLock PartialErrorPrintLine PartialInfoPrintLine PrimitiveFailureSignal RecursionInterruptSignal RecursiveStoreStringSignal SubscriptOutOfBoundsSignal SynchronizationSemaphores - UserInterruptSignal UserNotificationSignal WarningSignal Nothing' + UserInterruptSignal UserNotificationSignal WarningSignal' poolDictionaries:'' category:'Kernel-Objects' ! @@ -10373,10 +10373,14 @@ ! isSequenceable - "return true if the receiver is some kind of sequenceable collection; + "return true if the receiver is sequenceable; + i.e. if its elements are accessable by an integer index, + and support the do:-protocol. false is returned here - the method is only redefined in SequenceableCollection." ^ false + + "Modified (comment): / 03-03-2019 / 00:09:00 / Claus Gittinger" ! isSequenceableCollection