An AnyVal for numeric Strings.
Note: a NumericString contains only numeric digit characters.
Because NumericString is an AnyVal it will usually be as efficient as a String, being boxed only when a String would have been boxed.
The NumericString.apply factory method is implemented in terms of a macro that checks literals for validity at compile time. Calling NumericString.apply with a literal String value will either produce a valid NumericString instance at run time or an error at compile time. Here's an example:
scala> import anyvals._
import anyvals._
scala> NumericString("42")
res0: org.scalactic.anyvals.NumericString = NumericString(42)
scala> NumericString("abc")
<console>:11: error: NumericString.apply can only be invoked on String literals that contain numeric characters, i.e., decimal digits '0' through '9', like "123".
NumericString("abc")
^
NumericString.apply cannot be used if the value being passed is a variable (i.e., not a literal), because the macro cannot determine the validity of variables at compile time (just literals). If you try to pass a variable to NumericString.apply, you'll get a compiler error that suggests you use a different factory method, NumericString.from, instead:
scala> val x = "1"
x: String = 1
scala> NumericString(x)
<console>:15: error: NumericString.apply can only be invoked on String literals that contain only numeric characters, i.e., decimal digits '0' through '9', like "123" Please use NumericString.from instead.
NumericString(x)
^
The NumericString.from factory method will inspect the value at runtime and return an Option[NumericString]. If the value is valid, NumericString.from will return a Some[NumericString], else it will return a None. Here's an example:
scala> NumericString.from(x) res3: Option[org.scalactic.anyvals.NumericString] = Some(NumericString(1)) scala> val y = "a" y: String = a scala> NumericString.from(y) res4: Option[org.scalactic.anyvals.NumericString] = None
Value parameters
- value
-
The
Stringvalue underlying thisNumericString.
Attributes
- Companion
- object
- Source
- NumericString.scala
- Graph
-
- Supertypes
-
class AnyValtrait Matchableclass Any
Members list
Value members
Concrete methods
Return a NumericString consisting of the current NumericString concatenated n times.
Return a NumericString consisting of the current NumericString concatenated n times.
Attributes
- Source
- NumericString.scala
Returns a new String concatenating this NumericString with the passed String.
Returns a new String concatenating this NumericString with the passed String.
Value parameters
- that
-
the
Stringto append
Attributes
- Returns
-
a new
Stringwhich contains all elements of thisNumericStringfollowed by all elements of that - Source
- NumericString.scala
Returns a new String consisting of this NumericString prepended by the passed String.
Returns a new String consisting of this NumericString prepended by the passed String.
Value parameters
- that
-
the
Stringto append
Attributes
- Returns
-
a new
Stringwhich contains all elements of that followed by all elements of thisNumericString - Source
- NumericString.scala
Returns a new String consisting of this NumericString prepended by the passed Char.
Returns a new String consisting of this NumericString prepended by the passed Char.
Value parameters
- elem
-
the prepended
Char
Attributes
- Returns
-
a new
Stringconsisting ofelemfollowed by all characters from thisNumericString - Source
- NumericString.scala
Applies a binary operator to a start value and all elements of this NumericString, going left to right.
Applies a binary operator to a start value and all elements of this NumericString, going left to right.
Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.
Value parameters
- op
-
the binary operator
- z
-
the start value
Attributes
- Returns
-
the result of inserting
opbetween consecutiveCharsof thisNumericString, going left to right with the start valuezon the left:op(...op(op(z, x_1), x_2), ..., x_n)where `x,,1,,, ..., x,,n,,` are the characters of this `NumericString`. - Source
- NumericString.scala
Returns a new String consisting of this NumericString with the passed Char appended.
Returns a new String consisting of this NumericString with the passed Char appended.
Value parameters
- elem
-
the appended
Char
Attributes
- Returns
-
a new
Stringconsisting of all elements of thisNumericStringfollowed byelem - Source
- NumericString.scala
Applies a binary operator to all elements of this NumericString and a start value, going right to left.
Applies a binary operator to all elements of this NumericString and a start value, going right to left.
Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.
Value parameters
- op
-
the binary operator
- z
-
the start value
Attributes
- Returns
-
the result of inserting
opbetween consecutive characters of thisNumericString, going right to left with the start valuezon the right:op(x_1, op(x_2, ... op(x_n, z)...))where `x,,1,,, ..., x,,n,,` are the characters of this `NumericString`. - Source
- NumericString.scala
Returns true if this is less than that
Returns true if this is less than or equal to that
Returns true if this is greater than that
Returns true if this is greater than or equal to that
Appends string value of this NumericString to a string builder.
Appends string value of this NumericString to a string builder.
Value parameters
- b
-
the string builder to which this
NumericStringgets appended
Attributes
- Returns
-
the string builder b to which this
NumericStringwas appended - Source
- NumericString.scala
Appends character elements of this NumericString to a string builder using a separator string.
Appends character elements of this NumericString to a string builder using a separator string.
Value parameters
- b
-
the string builder to which elements are appended
- sep
-
the separator string
Attributes
- Returns
-
the string builder b to which elements were appended
- Source
- NumericString.scala
Appends character elements of this NumericString to a string builder using start, separator, and end strings. The written text begins with the string start and ends with the string end. Inside, the characters of this NumericString are separated by the string sep.
Appends character elements of this NumericString to a string builder using start, separator, and end strings. The written text begins with the string start and ends with the string end. Inside, the characters of this NumericString are separated by the string sep.
Value parameters
- b
-
the string builder to which elements are appended
- end
-
the ending string
- sep
-
the separator string
- start
-
the starting string
Attributes
- Returns
-
the string builder b to which elements were appended
- Source
- NumericString.scala
Aggregates the results of applying an operator to subsequent elements of this NumericString.
Aggregates the results of applying an operator to subsequent elements of this NumericString.
This is a more general form of fold and reduce. It is similar to foldLeft in that it doesn't require the result to be a supertype of the element type.
aggregate splits the elements of this NumericString into partitions and processes each partition by sequentially applying seqop, starting with z (like foldLeft). Those intermediate results are then combined by using combop (like fold). The implementation of this operation may operate on an arbitrary number of collection partitions (even 1), so combop may be invoked an arbitrary number of times (even 0).
As an example, consider summing up the integer values the character elements. The initial value for the sum is 0. First, seqop transforms each input character to an Int and adds it to the sum (of the partition). Then, combop just needs to sum up the intermediate results of the partitions:
NumericString("123").aggregate(0)({ (sum, ch) => sum + ch.toInt }, { (p1, p2) => p1 + p2 })
Value parameters
- B
-
the type of accumulated results
- combop
-
an associative operator used to combine results within a partition
- seqop
-
an operator used to accumulate results within a partition
- z
-
the initial value for the accumulated result of the partition - this will typically be the neutral element for the
seqopoperator (e.g.Nilfor list concatenation or0for summation) and may be evaluated more than once
Attributes
- Source
- NumericString.scala
Return character at index index.
Return character at index index.
Attributes
- Returns
-
the character of this string at index
index, where0indicates the first element. - Source
- NumericString.scala
Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.
Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.
Value parameters
- that
-
the object with which this
NumericStringshould be compared
Attributes
- Returns
-
trueif thisNumericStringcan possibly equalthat,falseotherwise. The test takes into consideration only the run-time types of objects but ignores their elements. - Source
- NumericString.scala
Returns this string with first character converted to upper case (i.e. unchanged for a NumericString).
Returns this string with first character converted to upper case (i.e. unchanged for a NumericString).
Attributes
- Returns
-
the string value of this
NumericString. - Source
- NumericString.scala
Returns the character at the zero-based index within the NumericString.
Returns the character at the zero-based index within the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- index
-
zero-based offset within
NumericString
Attributes
- Returns
-
character found at
index - Source
- NumericString.scala
Returns the integer value of the Unicode code point at the zero-based index within the NumericString.
Returns the integer value of the Unicode code point at the zero-based index within the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- index
-
zero-based offset within
NumericString
Attributes
- Returns
-
Unicode code point found at 'index'
- Source
- NumericString.scala
Returns the integer value of the Unicode code point immediately prior to the zero-based index within the NumericString.
Returns the integer value of the Unicode code point immediately prior to the zero-based index within the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- index
-
zero-based offset within
NumericString
Attributes
- Returns
-
Unicode code point found immediately prior to 'index'
- Source
- NumericString.scala
Returns the count of complete Unicode code points beginning at zero-based beginIndex and ending at (but not including) zero-based endIndex.
Returns the count of complete Unicode code points beginning at zero-based beginIndex and ending at (but not including) zero-based endIndex.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- beginIndex
-
zero-based starting offset within
NumericString - endIndex
-
zero-based ending offset within
NumericString, one-past character range of interest
Attributes
- Returns
-
count of complete Unicode code points found from BeginIndex, up to endIndex
- Source
- NumericString.scala
Builds a new collection by applying a partial function to all characters of this NumericString on which the function is defined.
Builds a new collection by applying a partial function to all characters of this NumericString on which the function is defined.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- pf
-
the partial function which filters and maps the elements.
Attributes
- Returns
-
a new String resulting from applying the partial function
pfto each element on which it is defined and collecting the results. The order of the elements is preserved. - Source
- NumericString.scala
Finds the first character of the NumericString for which the given partial function is defined, and applies the partial function to it.
Finds the first character of the NumericString for which the given partial function is defined, and applies the partial function to it.
Value parameters
- pf
-
the partial function
Attributes
- Returns
-
an option value containing pf applied to the first value for which it is defined, or
Noneif none exists. - Source
- NumericString.scala
Iterates over combinations. A combination of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.
Iterates over combinations. A combination of length n is a subsequence of the original sequence, with the elements taken in order. Thus, "xy" and "yy" are both length-2 combinations of "xyy", but "yx" is not. If there is more than one way to generate the same subsequence, only one will be returned.
For example, "xyyy" has three different ways to generate "xy" depending on whether the first, second, or third "y" is selected. However, since all are identical, only one will be chosen. Which of the three will be taken is an implementation detail that is not defined.
Attributes
- Returns
-
An Iterator which traverses the possible n-element combinations of this
NumericString. - Example
-
NumericString("12223").combinations(2) = Iterator(12, 13, 22, 23) - Source
- NumericString.scala
Result of comparing this with operand that.
Result of comparing this with operand that.
Implement this method to determine how instances of A will be sorted.
Returns x where:
-
x < 0whenthis < that -
x == 0whenthis == that -
x > 0whenthis > that
Attributes
- Source
- NumericString.scala
Compares the NumericString to anotherString, returning an integer <0 if NumericString is less than the supplied string, 0 if identical, and >0 if NumericString is greater than the supplied string.
Compares the NumericString to anotherString, returning an integer <0 if NumericString is less than the supplied string, 0 if identical, and >0 if NumericString is greater than the supplied string.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- anotherString
-
other string we compare
NumericStringagainst
Attributes
- Returns
-
integer <0, 0 or >0 corresponding to lexicographic ordering of
NumericStringvs.anotherString - Source
- NumericString.scala
Concatenates supplied string str onto the tail end of the NumericString and returns the resulting String.
Concatenates supplied string str onto the tail end of the NumericString and returns the resulting String.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- str
-
additional string to concatenate onto
NumericString
Attributes
- Returns
-
string resulting from the concatenation
- Source
- NumericString.scala
Returns a new NumericString concatenating this NumericString with the passed NumericString.
Returns a new NumericString concatenating this NumericString with the passed NumericString.
Value parameters
- that
-
the
NumericStringto append
Attributes
- Returns
-
a new
NumericStringthat concatenates thisNumericStringwiththat. - Source
- NumericString.scala
Tests whether this NumericString contains a given value as an element.
Tests whether this NumericString contains a given value as an element.
Value parameters
- s
-
the element to test.
Attributes
- Returns
-
trueif thisNumericStringhas an element that is equal (as determined by==) toelem,falseotherwise. - Source
- NumericString.scala
Tests whether this NumericString contains a given sequence as a slice.
Tests whether this NumericString contains a given sequence as a slice.
Value parameters
- that
-
the sequence to test
Attributes
- Returns
-
trueif thisNumericStringcontains a slice with the same elements asthat, otherwisefalse. - Source
- NumericString.scala
Returns true if the NumericString content is the same as the supplied character sequence cs, otherwise returns false.
Returns true if the NumericString content is the same as the supplied character sequence cs, otherwise returns false.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- cs
-
character sequence for comparison
Attributes
- Returns
-
trueifNumericStringcontent is the same ascsfalseotherwise. - Source
- NumericString.scala
Copies the elements of this NumericString to an array. Fills the given array xs with at most len elements of this NumericString, starting at position start. Copying will stop once either the end of the current NumericString is reached, or the end of the target array is reached, or len elements have been copied.
Copies the elements of this NumericString to an array. Fills the given array xs with at most len elements of this NumericString, starting at position start. Copying will stop once either the end of the current NumericString is reached, or the end of the target array is reached, or len elements have been copied.
Value parameters
- len
-
the maximal number of elements to copy.
- start
-
the starting index.
- xs
-
the array to fill.
Attributes
- Source
- NumericString.scala
Copies the elements of this NumericString to an array. Fills the given array xs with values of this NumericString Copying will stop once either the end of the current NumericString is reached, or the end of the target array is reached.
Copies the elements of this NumericString to an array. Fills the given array xs with values of this NumericString Copying will stop once either the end of the current NumericString is reached, or the end of the target array is reached.
Value parameters
- xs
-
the array to fill.
Attributes
- Source
- NumericString.scala
Copies the elements of this NumericString to an array. Fills the given array xs with values of this NumericString, beginning at index start. Copying will stop once either the end of the current NumericString is reached, or the end of the target array is reached.
Copies the elements of this NumericString to an array. Fills the given array xs with values of this NumericString, beginning at index start. Copying will stop once either the end of the current NumericString is reached, or the end of the target array is reached.
Value parameters
- start
-
the starting index.
- xs
-
the array to fill.
Attributes
- Source
- NumericString.scala
Copies all elements of this NumericString to a buffer.
Copies all elements of this NumericString to a buffer.
Value parameters
- dest
-
The buffer to which elements are copied.
Attributes
- Source
- NumericString.scala
Tests whether every element of this NumericString relates to the corresponding element of another sequence by satisfying a test predicate.
Tests whether every element of this NumericString relates to the corresponding element of another sequence by satisfying a test predicate.
Type parameters
- B
-
the type of the elements of
that
Value parameters
- p
-
the test predicate, which relates elements from both sequences
- that
-
the other sequence
Attributes
- Returns
-
trueif both sequences have the same length andp(x, y)istruefor all corresponding elementsxof thisNumericStringandyofthat, otherwisefalse. - Source
- NumericString.scala
Counts the number of elements in the NumericString which satisfy a predicate.
Counts the number of elements in the NumericString which satisfy a predicate.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the number of elements satisfying the predicate
p. - Source
- NumericString.scala
Computes the multiset difference between this NumericString and another sequence.
Computes the multiset difference between this NumericString and another sequence.
Value parameters
- that
-
the sequence of elements to remove
Attributes
- Returns
-
a new string which contains all elements of this
NumericStringexcept some occurrences of elements that also appear inthat. If an element valuexappears ''n'' times inthat, then the first ''n'' occurrences ofxwill not form part of the result, but any following occurrences will. - Source
- NumericString.scala
Builds a new NumericString from this NumericString without any duplicate elements.
Builds a new NumericString from this NumericString without any duplicate elements.
Attributes
- Returns
-
A new string which contains the first occurrence of every character of this
NumericString. - Source
- NumericString.scala
Selects all elements except first ''n'' ones.
Selects all elements except first ''n'' ones.
Value parameters
- n
-
the number of elements to drop from this
NumericString.
Attributes
- Returns
-
a string consisting of all elements of this
NumericStringexcept the firstnones, or else the empty string if thisNumericStringhas less thannelements. - Source
- NumericString.scala
Selects all elements except last ''n'' ones.
Selects all elements except last ''n'' ones.
Value parameters
- n
-
The number of elements to take
Attributes
- Returns
-
a string consisting of all elements of this
NumericStringexcept the lastnones, or else the empty string, if thisNumericStringhas less thannelements. - Source
- NumericString.scala
Drops longest prefix of elements that satisfy a predicate.
Drops longest prefix of elements that satisfy a predicate.
Value parameters
- p
-
The predicate used to test elements.
Attributes
- Returns
-
the longest suffix of this
NumericStringwhose first element does not satisfy the predicatep. - Source
- NumericString.scala
Returns true if the NumericString content completely matches the supplied suffix, when both strings are aligned at their endpoints.
Returns true if the NumericString content completely matches the supplied suffix, when both strings are aligned at their endpoints.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- suffix
-
string for comparison as a suffix
Attributes
- Returns
-
trueifNumericStringcontent completely matches the suppliedsuffixfalseotherwise. - Source
- NumericString.scala
Tests whether this NumericString ends with the given sequence.
Tests whether this NumericString ends with the given sequence.
Value parameters
- that
-
the sequence to test
Attributes
- Returns
-
trueif thisNumericStringhasthatas a suffix,falseotherwise. - Source
- NumericString.scala
Applies the passed String => String function to the underlying String value, and if the result is a numeric string, returns the result wrapped in a NumericString, else throws AssertionError.
Applies the passed String => String function to the underlying String value, and if the result is a numeric string, returns the result wrapped in a NumericString, else throws AssertionError.
A factory/assertion method that produces a NumericString given a valid String value, or throws AssertionError, if given an invalid String value.
Note: you should use this method only when you are convinced that it will always succeed, i.e., never throw an exception. It is good practice to add a comment near the invocation of this method indicating ''why'' you think it will always succeed to document your reasoning. If you are not sure an ensuringValid call will always succeed, you should use one of the other factory or validation methods provided on this object instead: isValid, tryingValid, passOrElse, goodOrElse, or rightOrElse.
This method will inspect the result of applying the given function to this NumericString's underlying String value and if the result is a valid numeric string, it will return a NumericString representing that value. Otherwise, the String value returned by the given function is not a valid numeric string, so this method will throw AssertionError.
This method differs from a vanilla assert or ensuring call in that you get something you didn't already have if the assertion succeeds: a type that promises a String contains only numeric digit characters. With this method, you are asserting that you are convinced the result of the computation represented by applying the given function to this NumericString's value will produce a valid numeric string. Instead of producing an invalid NumericString, this method will signal an invalid result with a loud AssertionError.
Value parameters
- f
-
the
String => Stringfunction to apply to thisNumericString's underlyingStringvalue.
Attributes
- Returns
-
the result of applying this
NumericString's underlyingStringvalue to to the passed function, wrapped in aNumericStringif it is a valid numeric string (else throwsAssertionError). - Throws
-
AssertionError
if the result of applying this
NumericString's underlyingStringvalue to to the passed function contains non-digit characters. - Source
- NumericString.scala
Returns true if the supplied arg0 string is considered equal to this NumericString.
Returns true if the supplied arg0 string is considered equal to this NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- arg0
-
string for comparison
Attributes
- Returns
-
trueifNumericStringcontent is the same asarg0falseotherwise. - Source
- NumericString.scala
Tests whether a predicate holds for at least one element of this NumericString.
Tests whether a predicate holds for at least one element of this NumericString.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
trueif the given predicatepis satisfied by at least one character of thisNumericString, otherwisefalse - Source
- NumericString.scala
Selects all elements of this NumericString which satisfy a predicate.
Selects all elements of this NumericString which satisfy a predicate.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
a string consisting of all characters of this
NumericStringthat satisfy the given predicatep. Their order may not be preserved. - Source
- NumericString.scala
Selects all elements of this NumericString which do not satisfy a predicate.
Selects all elements of this NumericString which do not satisfy a predicate.
Value parameters
- pred
-
the predicate used to test elements.
Attributes
- Returns
-
a string consisting of all characters of this
NumericStringthat do not satisfy the given predicatep. Their order may not be preserved. - Source
- NumericString.scala
Finds the first element of the NumericString satisfying a predicate, if any.
Finds the first element of the NumericString satisfying a predicate, if any.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
an option value containing the first character of the
NumericStringthat satisfiesp, orNoneif none exists. - Source
- NumericString.scala
Builds a new collection by applying a function to all elements of this NumericString and using the elements of the resulting collections.
Builds a new collection by applying a function to all elements of this NumericString and using the elements of the resulting collections.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new string resulting from applying the given collection-valued function
fto each element of thisNumericStringand concatenating the results. - Source
- NumericString.scala
Folds the elements of this NumericString using the specified associative binary operator.
Folds the elements of this NumericString using the specified associative binary operator.
Type parameters
- A1
-
a type parameter for the binary operator, a supertype of
A.
Value parameters
- op
-
a binary operator that must be associative.
- z
-
a neutral element for the fold operation; may be added to the result an arbitrary number of times, and must not change the result (e.g.,
Nilfor list concatenation, 0 for addition, or 1 for multiplication).
Attributes
- Returns
-
the result of applying the fold operator
opbetween all the elements andz, orzif thisNumericStringis empty. - Source
- NumericString.scala
Applies a binary operator to a start value and all elements of this NumericString, going left to right.
Applies a binary operator to a start value and all elements of this NumericString, going left to right.
Type parameters
- B
-
the result type of the binary operator.
Value parameters
- op
-
the binary operator.
- z
-
the start value.
Attributes
- Returns
-
the result of inserting
opbetween consecutive elements of thisNumericString, going left to right with the start valuezon the left:op(...op(z, x_1), x_2, ..., x_n)where `x,,1,,, ..., x,,n,,` are the elements of this `NumericString`. Returns `z` if this `NumericString` is empty. - Source
- NumericString.scala
Applies a binary operator to all elements of this NumericString and a start value, going right to left.
Applies a binary operator to all elements of this NumericString and a start value, going right to left.
Type parameters
- B
-
the result type of the binary operator.
Value parameters
- op
-
the binary operator.
- z
-
the start value.
Attributes
- Returns
-
the result of inserting
opbetween consecutive elements of thisNumericString, going right to left with the start valuezon the right:op(x_1, op(x_2, ... op(x_n, z)...))where `x,,1,,, ..., x,,n,,` are the elements of this `NumericString`. Returns `z` if this `NumericString` is empty. - Source
- NumericString.scala
Tests whether a predicate holds for all elements of this NumericString.
Tests whether a predicate holds for all elements of this NumericString.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
trueif thisNumericStringis empty or the given predicatepholds for all elements of thisNumericString, otherwisefalse. - Source
- NumericString.scala
Applies a function f to all elements of this NumericString.
Applies a function f to all elements of this NumericString.
Value parameters
- f
-
the function that is applied for its side-effect to every element. The result of function
fis discarded.
Attributes
- Source
- NumericString.scala
Returns an array of bytes corresponding to the NumericString characters, interpreted via the platform's default Charset-mapping of Unicode code points.
Returns an array of bytes corresponding to the NumericString characters, interpreted via the platform's default Charset-mapping of Unicode code points.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Attributes
- Returns
-
array of bytes corresponding to
NumericStringcharacters - Source
- NumericString.scala
Returns an array of bytes corresponding to the NumericString characters, interpreted via the supplied charset mapping of Unicode code points.
Returns an array of bytes corresponding to the NumericString characters, interpreted via the supplied charset mapping of Unicode code points.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- charset
-
a mapping of Unicode code points to bytes
Attributes
- Returns
-
array of bytes corresponding to
NumericStringcharacters - Source
- NumericString.scala
Returns an array of bytes corresponding to the NumericString characters, interpreted via the named charsetName Charset-mapping of Unicode code points.
Returns an array of bytes corresponding to the NumericString characters, interpreted via the named charsetName Charset-mapping of Unicode code points.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- charsetName
-
string that names an already-known mapping of Unicode code points to bytes
Attributes
- Returns
-
array of bytes corresponding to
NumericStringcharacters - Source
- NumericString.scala
Extracts the range of NumericString characters beginning at zero-based srcBegin through but not including srcEnd, into the supplied character array dst, writing the characters at the zero-based dstBegin index forward within that array.
Extracts the range of NumericString characters beginning at zero-based srcBegin through but not including srcEnd, into the supplied character array dst, writing the characters at the zero-based dstBegin index forward within that array.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- dst
-
supplied character array to write extracted characters into
- dstBegin
-
zero-based index within destination array at which to begin writing
- srcBegin
-
zero-based index where to begin extracting characters from
NumericString - srcEnd
-
zero-based limit before which to stop extracting characters from
NumericString
Attributes
- Returns
-
Unit -- this function modifies the supplied
dstarray - Source
- NumericString.scala
Partitions this NumericString into a map of strings according to some discriminator function.
Partitions this NumericString into a map of strings according to some discriminator function.
Type parameters
- K
-
the type of keys returned by the discriminator function.
Value parameters
- f
-
the discriminator function.
Attributes
- Returns
-
A map from keys to strings such that the following invariant holds:
(xs groupBy f)(k) = xs filter (x => f(x) == k)That is, every key `k` is bound to a string of those elements `x` for which `f(x)` equals `k`. - Source
- NumericString.scala
Partitions elements in fixed size strings.
Partitions elements in fixed size strings.
Value parameters
- size
-
the number of elements per group
Attributes
- Returns
-
An iterator producing strings of size
size, except the last will be less than sizesizeif the elements don't divide evenly. - See also
-
scala.collection.Iterator, method
grouped - Source
- NumericString.scala
Tests whether this NumericString is known to have a finite size. Always true for NumericString.
Tests whether this NumericString is known to have a finite size. Always true for NumericString.
Attributes
- Returns
-
trueif this collection is known to have finite size,falseotherwise. - Source
- NumericString.scala
Selects the first element of this NumericString.
Selects the first element of this NumericString.
Attributes
- Returns
-
the first element of this
NumericString. - Throws
-
NoSuchElementException
if the
NumericStringis empty. - Source
- NumericString.scala
Optionally selects the first element.
Optionally selects the first element.
Attributes
- Returns
-
the first element of this
NumericStringif it is nonempty,Noneif it is empty. - Source
- NumericString.scala
Returns zero-based index in Unicode code units (logical index of characters) of first-encountered NumericString character matching the supplied Unicode ch; returns -1 if no matching character is found.
Returns zero-based index in Unicode code units (logical index of characters) of first-encountered NumericString character matching the supplied Unicode ch; returns -1 if no matching character is found.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- ch
-
Unicode character to look for
Attributes
- Returns
-
zero-based integer index in Unicode code units of first-encountered instance of
ch - Source
- NumericString.scala
Returns zero-based index (in Unicode code units: logical index of characters) of first-encountered NumericString character matching supplied Unicode ch, beginning search at zero-based index fromIndex; returns -1 if no matching character is found or if fromIndex is outside the bounds of NumericString.
Returns zero-based index (in Unicode code units: logical index of characters) of first-encountered NumericString character matching supplied Unicode ch, beginning search at zero-based index fromIndex; returns -1 if no matching character is found or if fromIndex is outside the bounds of NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- ch
-
Unicode character to look for
- fromIndex
-
zero-based integer index at which to begin search for match of
chcharacter
Attributes
- Returns
-
zero-based integer index in Unicode code units of first-encountered instance of
chat/beyondfromIndex - Source
- NumericString.scala
Returns zero-based index (in Unicode code units: logical index of characters) of starting-character position of first-encountered match of str within NumericString; returns -1 if no fully-matching substring is found.
Returns zero-based index (in Unicode code units: logical index of characters) of starting-character position of first-encountered match of str within NumericString; returns -1 if no fully-matching substring is found.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- str
-
Unicode string to look for
Attributes
- Returns
-
zero-based integer index in Unicode code units, of starting position of first-encountered instance of
strinNumericString - Source
- NumericString.scala
Returns zero-based index (in Unicode code units: logical index of characters) of starting-character position of first-encountered match of str within NumericString, beginning search at zero-based index fromIndex; returns -1 if no fully-matching substring is found, or if fromIndex is outside the bounds of NumericString.
Returns zero-based index (in Unicode code units: logical index of characters) of starting-character position of first-encountered match of str within NumericString, beginning search at zero-based index fromIndex; returns -1 if no fully-matching substring is found, or if fromIndex is outside the bounds of NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- fromIndex
-
zero-based integer index at which to begin search for match of
strstring - str
-
Unicode string to look for
Attributes
- Returns
-
zero-based integer index in Unicode code units, of starting position of first-encountered instance of
strinNumericStringat/beyondfromIndex - Source
- NumericString.scala
Finds first index after or at a start index where this NumericString contains a given sequence as a slice.
Finds first index after or at a start index where this NumericString contains a given sequence as a slice.
Value parameters
- from
-
the start index
- that
-
the sequence to test
Attributes
- Returns
-
the first index
>= fromsuch that the elements of thisNumericStringstarting at this index match the elements of sequencethat, or-1of no such subsequence exists. - Source
- NumericString.scala
Finds first index where this NumericString contains a given sequence as a slice.
Finds first index where this NumericString contains a given sequence as a slice.
Value parameters
- that
-
the sequence to test
Attributes
- Returns
-
the first index such that the elements of this
NumericStringstarting at this index match the elements of sequencethat, or-1of no such subsequence exists. - Source
- NumericString.scala
Finds index of the first element satisfying some predicate after or at some start index.
Finds index of the first element satisfying some predicate after or at some start index.
Value parameters
- from
-
the start index
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the index
>= fromof the first element of thisNumericStringthat satisfies the predicatep, or-1, if none exists. - Source
- NumericString.scala
Finds index of first element satisfying some predicate.
Finds index of first element satisfying some predicate.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the index of the first element of this
NumericStringthat satisfies the predicatep, or-1, if none exists. - Source
- NumericString.scala
Produces the range of all indices of this sequence.
Produces the range of all indices of this sequence.
Attributes
- Returns
-
a
Rangevalue from0to one less than the length of thisNumericString. - Source
- NumericString.scala
Selects all elements except the last.
Selects all elements except the last.
Attributes
- Returns
-
a string consisting of all elements of this
NumericStringexcept the last one. - Throws
-
UnsupportedOperationException
if the
NumericStringis empty. - Source
- NumericString.scala
Iterates over the inits of this NumericString. The first value will be the string for this NumericString and the final one will be an empty string, with the intervening values the results of successive applications of init.
Iterates over the inits of this NumericString. The first value will be the string for this NumericString and the final one will be an empty string, with the intervening values the results of successive applications of init.
Attributes
- Returns
-
an iterator over all the inits of this
NumericString - Example
-
NumericString("123").inits = Iterator(123, 12, 1, "") - Source
- NumericString.scala
Add this immutable NumericString's String value to the pool of interned strings, so there is only one copy of the string's representation in memory, shared among all instances.
Add this immutable NumericString's String value to the pool of interned strings, so there is only one copy of the string's representation in memory, shared among all instances.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Attributes
- Returns
-
String which is now in the pool of interned strings
- Source
- NumericString.scala
Computes the multiset intersection between this NumericString and another sequence.
Computes the multiset intersection between this NumericString and another sequence.
Value parameters
- that
-
the sequence of elements to intersect with.
Attributes
- Returns
-
a new string which contains all elements of this
NumericStringwhich also appear inthat. If an element valuexappears ''n'' times inthat, then the first ''n'' occurrences ofxwill be retained in the result, but any following occurrences will be omitted. - Source
- NumericString.scala
Tests whether this NumericString contains given index.
Tests whether this NumericString contains given index.
Value parameters
- idx
-
the index to test
Attributes
- Returns
-
trueif thisNumericStringcontains an element at positionidx,falseotherwise. - Source
- NumericString.scala
Returns true if NumericString contains no characters (not even whitespace); otherwise returns false.
Returns true if NumericString contains no characters (not even whitespace); otherwise returns false.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Attributes
- Returns
-
trueifNumericStringcontains no characters (not even whitespace)falseotherwise. - Source
- NumericString.scala
Tests whether this NumericString can be repeatedly traversed. Always true for NumericString.
Tests whether this NumericString can be repeatedly traversed. Always true for NumericString.
Attributes
- Returns
-
trueif it is repeatedly traversable,falseotherwise. - Source
- NumericString.scala
Creates a new iterator over all elements contained in this iterable object.
Creates a new iterator over all elements contained in this iterable object.
Attributes
- Returns
-
the new iterator
- Source
- NumericString.scala
Selects the last element.
Selects the last element.
Attributes
- Returns
-
The last element of this
NumericString. - Throws
-
NoSuchElementException
If the
NumericStringis empty. - Source
- NumericString.scala
Returns zero-based index of the final occurrence of the Unicode character ch in the NumericString.
Returns zero-based index of the final occurrence of the Unicode character ch in the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- ch
-
Unicode character for which to search backwards
Attributes
- Returns
-
zero-based integer index of the final occurrence of this character in
NumericString; -1 if not found - Source
- NumericString.scala
Returns zero-based index of the final occurrence of the Unicode character ch in the NumericString, with search beginning at zero-based fromIndex and proceeding backwards.
Returns zero-based index of the final occurrence of the Unicode character ch in the NumericString, with search beginning at zero-based fromIndex and proceeding backwards.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- ch
-
Unicode character for which to search backwards
- fromIndex
-
zero-based index of starting position
Attributes
- Returns
-
zero-based index of the final (rightmost) occurrence of this character in
NumericString; -1 if not found - Source
- NumericString.scala
Returns zero-based index from the beginning of NumericString of the first character position for where the string str fully matched rightmost within NumericString.
Returns zero-based index from the beginning of NumericString of the first character position for where the string str fully matched rightmost within NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- str
-
string for comparison
Attributes
- Returns
-
zero-based integer index of first character position of where
strfully matched rightmost withinNumericString; -1 if not found - Source
- NumericString.scala
Returns zero-based index from the beginning of NumericString of the first character position for where the string str fully matched rightmost within NumericString, with search beginning at zero-based fromIndex and proceeding backwards.
Returns zero-based index from the beginning of NumericString of the first character position for where the string str fully matched rightmost within NumericString, with search beginning at zero-based fromIndex and proceeding backwards.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- fromIndex
-
zero-based index of starting position
- str
-
string for comparison
Attributes
- Returns
-
zero-based integer index of first character position of where
strfully matched rightmost withinNumericString; -1 if not found - Source
- NumericString.scala
Finds last index before or at a given end index where this NumericString contains a given sequence as a slice.
Finds last index before or at a given end index where this NumericString contains a given sequence as a slice.
Value parameters
- end
-
the end index
- that
-
the sequence to test
Attributes
- Returns
-
the last index
<= endsuch that the elements of thisNumericStringstarting at this index match the elements of sequencethat, or-1of no such subsequence exists. - Source
- NumericString.scala
Finds last index where this NumericString contains a given sequence as a slice.
Finds last index where this NumericString contains a given sequence as a slice.
Value parameters
- that
-
the sequence to test
Attributes
- Returns
-
the last index such that the elements of this
NumericStringstarting a this index match the elements of sequencethat, or-1of no such subsequence exists. - Source
- NumericString.scala
Finds index of last element satisfying some predicate before or at given end index.
Finds index of last element satisfying some predicate before or at given end index.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the index
<= endof the last element of thisNumericStringthat satisfies the predicatep, or-1, if none exists. - Source
- NumericString.scala
Finds index of last element satisfying some predicate.
Finds index of last element satisfying some predicate.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the index of the last element of this
NumericStringthat satisfies the predicatep, or-1, if none exists. - Source
- NumericString.scala
Optionally selects the last element.
Optionally selects the last element.
Attributes
- Returns
-
the last element of this
NumericStringif it is nonempty,Noneif it is empty. - Source
- NumericString.scala
Returns length of this NumericString in Unicode characters.
Returns length of this NumericString in Unicode characters.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Attributes
- Returns
-
length of this
NumericString - Source
- NumericString.scala
Compares the length of this NumericString to a test value.
Compares the length of this NumericString to a test value.
Value parameters
- len
-
the test value that gets compared with the length.
Attributes
- Returns
-
A value
xwherex < 0 if this.length < len x == 0 if this.length == len x > 0 if this.length > lenThe method as implemented here does not call
lengthdirectly; its running time isO(length min len)instead ofO(length). The method should be overwritten if computinglengthis cheap. - Source
- NumericString.scala
Return all lines in this NumericString in an iterator. Always returns a single string for NumericString.
Return all lines in this NumericString in an iterator. Always returns a single string for NumericString.
Attributes
- Source
- NumericString.scala
Return all lines in this NumericString in an iterator, including trailing line end characters. Always returns a single string with no endline, for NumericString.
Return all lines in this NumericString in an iterator, including trailing line end characters. Always returns a single string with no endline, for NumericString.
Attributes
- Source
- NumericString.scala
Builds a new string by applying a function to all elements of this NumericString.
Builds a new string by applying a function to all elements of this NumericString.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new string resulting from applying the given function
fto each character of thisNumericStringand collecting the results. - Source
- NumericString.scala
Returns true if the this NumericString's String value matches the supplied regular expression, regex; otherwise returns false.
Returns true if the this NumericString's String value matches the supplied regular expression, regex; otherwise returns false.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- regex
-
regular-expression string
Attributes
- Returns
-
trueifNumericStringcontent matches supplied regular expressionregex;falseotherwise. - Source
- NumericString.scala
Finds the largest element.
Finds the largest element.
Attributes
- Returns
-
the largest character of this
NumericString. - Source
- NumericString.scala
Finds the first element which yields the largest value measured by function f.
Finds the first element which yields the largest value measured by function f.
Type parameters
- B
-
The result type of the function f.
Value parameters
- cmp
-
An ordering to be used for comparing elements.
- f
-
The measuring function.
Attributes
- Returns
-
the first element of this
NumericStringwith the largest value measured by function f with respect to the orderingcmp. - Source
- NumericString.scala
Finds the smallest element.
Finds the smallest element.
Attributes
- Returns
-
the smallest element of this
NumericString. - Source
- NumericString.scala
Finds the first element which yields the smallest value measured by function f.
Finds the first element which yields the smallest value measured by function f.
Type parameters
- B
-
The result type of the function f.
Value parameters
- cmp
-
An ordering to be used for comparing elements.
- f
-
The measuring function.
Attributes
- Returns
-
the first element of this
NumericStringwith the smallest value measured by function f with respect to the orderingcmp. - Source
- NumericString.scala
Displays all elements of this NumericString in a string.
Displays all elements of this NumericString in a string.
Attributes
- Returns
-
a string representation of this
NumericString. In the resulting string the string representations (w.r.t. the methodtoString) of all elements of thisNumericStringfollow each other without any separator string. - Source
- NumericString.scala
Displays all elements of this NumericString in a string using a separator string.
Displays all elements of this NumericString in a string using a separator string.
Value parameters
- sep
-
the separator string.
Attributes
- Returns
-
a string representation of this
NumericString. In the resulting string the string representations (w.r.t. the methodtoString) of all elements of thisNumericStringare separated by the stringsep. - Example
-
NumericString("123").mkString("|") = "1|2|3" - Source
- NumericString.scala
Displays all elements of this NumericString in a string using start, end, and separator strings.
Displays all elements of this NumericString in a string using start, end, and separator strings.
Value parameters
- end
-
the ending string.
- sep
-
the separator string.
- start
-
the starting string.
Attributes
- Returns
-
a string representation of this
NumericString. The resulting string begins with the stringstartand ends with the stringend. Inside, the string representations (w.r.t. the methodtoString) of all elements of thisNumericStringare separated by the stringsep. - Example
-
NumericString("123").mkString("(", "; ", ")") = "(1; 2; 3)" - Source
- NumericString.scala
Tests whether the NumericString is not empty.
Tests whether the NumericString is not empty.
Attributes
- Returns
-
trueif theNumericStringcontains at least one element,falseotherwise. - Source
- NumericString.scala
Returns the "byte distance" required from start of string, to reach the position of the supplied byte index plus the number of codePointOffset points further.
Returns the "byte distance" required from start of string, to reach the position of the supplied byte index plus the number of codePointOffset points further.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- codePointOffset
-
how many code points to advance (may be variable length per code point)
- index
-
byte index of start position in spacing computation
Attributes
- Returns
-
zero-based offset in bytes from start of
NumericString, to reach the designated position - Source
- NumericString.scala
A string copy of this NumericString with an element value appended until a given target length is reached.
A string copy of this NumericString with an element value appended until a given target length is reached.
Value parameters
- elem
-
the padding value
- len
-
the target length
Attributes
- Returns
-
a new string consisting of all elements of this
NumericStringfollowed by the minimal number of occurrences ofelemso that the resulting string has a length of at leastlen. - Source
- NumericString.scala
Partitions this NumericString in two strings according to a predicate.
Partitions this NumericString in two strings according to a predicate.
Value parameters
- pred
-
the predicate on which to partition.
Attributes
- Returns
-
a pair of strings -- the first string consists of all elements that satisfy the predicate
pand the second string consists of all elements that don't. The relative order of the elements in the resulting strings may not be preserved. - Source
- NumericString.scala
Produces a new string where a slice of elements in this NumericString is replaced by another sequence.
Produces a new string where a slice of elements in this NumericString is replaced by another sequence.
Value parameters
- from
-
the index of the first replaced element
- patch
-
the replacement sequence
- replaced
-
the number of elements to drop in the original
NumericString
Attributes
- Returns
-
a new string consisting of all elements of this
NumericStringexcept thatreplacedelements starting fromfromare replaced bypatch. - Source
- NumericString.scala
Iterates over distinct permutations.
Iterates over distinct permutations.
Attributes
- Returns
-
An Iterator which traverses the distinct permutations of this
NumericString. - Example
-
NumericString("122").permutations = Iterator(122, 212, 221) - Source
- NumericString.scala
Returns the length of the longest prefix whose elements all satisfy some predicate.
Returns the length of the longest prefix whose elements all satisfy some predicate.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the length of the longest prefix of this
NumericStringsuch that every element of the segment satisfies the predicatep. - Source
- NumericString.scala
Multiplies up the elements of this collection.
Multiplies up the elements of this collection.
Type parameters
- B
-
the result type of the
*operator.
Value parameters
- num
-
an implicit parameter defining a set of numeric operations which includes the
*operator to be used in forming the product.
Attributes
- Returns
-
the product of all elements of this
NumericStringwith respect to the*operator innum. - Source
- NumericString.scala
You can follow a NumericString with .r(g1, ... , gn), turning it into a Regex, with group names g1 through gn.
You can follow a NumericString with .r(g1, ... , gn), turning it into a Regex, with group names g1 through gn.
This is not particularly useful for a NumericString, given the limitations on its content.
Value parameters
- groupNames
-
The names of the groups in the pattern, in the order they appear.
Attributes
- Source
- NumericString.scala
You can follow a NumericString with .r, turning it into a Regex.
You can follow a NumericString with .r, turning it into a Regex.
This is not particularly useful for a NumericString, given the limitations on its content.
Attributes
- Source
- NumericString.scala
Reduces the elements of this NumericString using the specified associative binary operator.
Reduces the elements of this NumericString using the specified associative binary operator.
Type parameters
- A1
-
A type parameter for the binary operator, a supertype of
A.
Value parameters
- op
-
A binary operator that must be associative.
Attributes
- Returns
-
The result of applying reduce operator
opbetween all the elements if theNumericStringis nonempty. - Throws
-
UnsupportedOperationException
if this
NumericStringis empty. - Source
- NumericString.scala
Applies a binary operator to all elements of this NumericString, going left to right.
Applies a binary operator to all elements of this NumericString, going left to right.
Type parameters
- B
-
the result type of the binary operator.
Value parameters
- op
-
the binary operator.
Attributes
- Returns
-
the result of inserting
opbetween consecutive elements of thisNumericString, going left to right:op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)where `x,,1,,, ..., x,,n,,` are the elements of this `NumericString`. - Throws
-
UnsupportedOperationException
if this
NumericStringis empty. - Source
- NumericString.scala
Optionally applies a binary operator to all elements of this NumericString, going left to right.
Optionally applies a binary operator to all elements of this NumericString, going left to right.
Type parameters
- B
-
the result type of the binary operator.
Value parameters
- op
-
the binary operator.
Attributes
- Returns
-
an option value containing the result of
reduceLeft(op)if thisNumericStringis nonempty,Noneotherwise. - Source
- NumericString.scala
Reduces the elements of this NumericString, if any, using the specified associative binary operator.
Reduces the elements of this NumericString, if any, using the specified associative binary operator.
Type parameters
- A1
-
A type parameter for the binary operator, a supertype of
A.
Value parameters
- op
-
A binary operator that must be associative.
Attributes
- Returns
-
An option value containing result of applying reduce operator
opbetween all the elements if the collection is nonempty, andNoneotherwise. - Source
- NumericString.scala
Applies a binary operator to all elements of this NumericString, going right to left.
Applies a binary operator to all elements of this NumericString, going right to left.
Type parameters
- B
-
the result type of the binary operator.
Value parameters
- op
-
the binary operator.
Attributes
- Returns
-
the result of inserting
opbetween consecutive elements of thisNumericString, going right to left:op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))where `x,,1,,, ..., x,,n,,` are the elements of this `NumericString`. - Throws
-
UnsupportedOperationException
if this
NumericStringis empty. - Source
- NumericString.scala
Optionally applies a binary operator to all elements of this NumericString, going right to left.
Optionally applies a binary operator to all elements of this NumericString, going right to left.
Type parameters
- B
-
the result type of the binary operator.
Value parameters
- op
-
the binary operator.
Attributes
- Returns
-
an option value containing the result of
reduceRight(op)if thisNumericStringis nonempty,Noneotherwise. - Source
- NumericString.scala
Returns true if the given region of text matches completely for the len characters beginning at toffset in the NumericString text and at ooffset in the supplied other string text, with the option to ignoreCase during matching; otherwise returns false.
Returns true if the given region of text matches completely for the len characters beginning at toffset in the NumericString text and at ooffset in the supplied other string text, with the option to ignoreCase during matching; otherwise returns false.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- ignoreCase
-
if nonzero, comparison ignores case
- len
-
length of comparison, in characters
- ooffset
-
zero-based offset of start point of comparison in
otherstring text - other
-
string supplied for comparison
- toffset
-
zero-based offset of start point of comparison in
NumericStringtext
Attributes
- Returns
-
trueif region of text matches completely for given length;falseotherwise. - Source
- NumericString.scala
Returns true if the given region of text matches completely for the len characters beginning at toffset in the NumericString text and at ooffset in the supplied other string text; otherwise returns false.
Returns true if the given region of text matches completely for the len characters beginning at toffset in the NumericString text and at ooffset in the supplied other string text; otherwise returns false.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- len
-
length of comparison, in characters
- ooffset
-
zero-based offset of start point of comparison in
otherstring text - other
-
string supplied for comparison
- toffset
-
zero-based offset of start point of comparison in
NumericStringtext
Attributes
- Returns
-
trueif region of text matches completely for given length;falseotherwise. - Source
- NumericString.scala
Returns the new String resulting from replacing all occurrences of oldChar with newChar.
Returns the new String resulting from replacing all occurrences of oldChar with newChar.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- newChar
-
character that will take its place
- oldChar
-
character to replace
Attributes
- Returns
-
string resulting from zero or more replacement(s)
- Source
- NumericString.scala
Returns the new String resulting from replacing all occurrences of CharSequence target with replacement.
Returns the new String resulting from replacing all occurrences of CharSequence target with replacement.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- replacement
-
character sequence that will take its place
- target
-
character sequence to replace
Attributes
- Returns
-
string resulting from zero or more replacement(s)
- Source
- NumericString.scala
Returns the new String resulting from replacing all regex string matches with the replacement string.
Returns the new String resulting from replacing all regex string matches with the replacement string.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- regex
-
regular expression string
- replacement
-
string to replace in place of any regular expression matches in the original
NumericString
Attributes
- Returns
-
string resulting from zero or more replacement(s)
- Source
- NumericString.scala
Replace all literal occurrences of literal with the string replacement. This is equivalent to java.lang.String#replaceAll except that both arguments are appropriately quoted to avoid being interpreted as metacharacters.
Replace all literal occurrences of literal with the string replacement. This is equivalent to java.lang.String#replaceAll except that both arguments are appropriately quoted to avoid being interpreted as metacharacters.
Value parameters
- literal
-
the string which should be replaced everywhere it occurs
- replacement
-
the replacement string
Attributes
- Returns
-
the resulting string
- Source
- NumericString.scala
Returns the new String resulting from replacing the first-found regex string match with the replacement string.
Returns the new String resulting from replacing the first-found regex string match with the replacement string.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- regex
-
regular expression string
- replacement
-
string to replace in place of first regular expression match in the original
NumericString
Attributes
- Returns
-
string resulting from zero or one replacement(s)
- Source
- NumericString.scala
Attributes
- Source
- NumericString.scala
Returns new string with elements in reversed order.
Returns new string with elements in reversed order.
Attributes
- Returns
-
A new string with all elements of this
NumericStringin reversed order. - Source
- NumericString.scala
An iterator yielding elements in reversed order.
An iterator yielding elements in reversed order.
Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.
Attributes
- Returns
-
an iterator yielding the elements of this
NumericStringin reversed order - Source
- NumericString.scala
Builds a new collection by applying a function to all elements of this NumericString and collecting the results in reversed order.
Builds a new collection by applying a function to all elements of this NumericString and collecting the results in reversed order.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new collection resulting from applying the given function
fto each element of thisNumericStringand collecting the results in reversed order. - Source
- NumericString.scala
Checks if the other iterable collection contains the same elements in the same order as this NumericString.
Checks if the other iterable collection contains the same elements in the same order as this NumericString.
Value parameters
- that
-
the collection to compare with.
Attributes
- Returns
-
true, if both collections contain the same elements in the same order,falseotherwise. - Source
- NumericString.scala
Computes a prefix scan of the elements of the collection.
Computes a prefix scan of the elements of the collection.
Note: The neutral element z may be applied more than once.
Value parameters
- op
-
the associative operator for the scan
- z
-
neutral element for the operator
op
Attributes
- Returns
-
a new string containing the prefix scan of the elements in this
NumericString - Source
- NumericString.scala
Produces a collection containing cumulative results of applying the operator going left to right.
Produces a collection containing cumulative results of applying the operator going left to right.
Value parameters
- op
-
the binary operator applied to the intermediate result and the element
- z
-
the initial value
Attributes
- Returns
-
collection with intermediate results
- Source
- NumericString.scala
Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.
Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.
Value parameters
- op
-
the binary operator applied to the intermediate result and the element
- z
-
the initial value
Attributes
- Returns
-
collection with intermediate results
- Source
- NumericString.scala
Computes length of longest segment whose elements all satisfy some predicate.
Computes length of longest segment whose elements all satisfy some predicate.
Value parameters
- from
-
the index where the search starts.
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the length of the longest segment of this
NumericStringstarting from indexfromsuch that every element of the segment satisfies the predicatep. - Source
- NumericString.scala
A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).
A version of this collection with all of the operations implemented sequentially (i.e., in a single-threaded manner).
This method returns a reference to this collection. In parallel collections, it is redefined to return a sequential implementation of this collection. In both cases, it has O(1) complexity.
Attributes
- Returns
-
a sequential view of the collection.
- Source
- NumericString.scala
The size of this NumericString.
The size of this NumericString.
Attributes
- Returns
-
the number of elements in this
NumericString. - Source
- NumericString.scala
Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:
Selects an interval of elements. The returned collection is made up of all elements x which satisfy the invariant:
from <= indexOf(x) < until
Value parameters
- from
-
the lowest index to include from this
NumericString. - until
-
the lowest index to EXCLUDE from this
NumericString.
Attributes
- Returns
-
a string containing the elements greater than or equal to index
fromextending up to (but not including) indexuntilof thisNumericString. - Source
- NumericString.scala
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)
Value parameters
- size
-
the number of elements per group
- step
-
the distance between the first elements of successive groups
Attributes
- Returns
-
An iterator producing strings of size
size, except the last and the only element will be truncated if there are fewer elements than size. - See also
-
scala.collection.Iterator, method
sliding - Source
- NumericString.scala
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.) "Sliding window" step is 1 by default.
Value parameters
- size
-
the number of elements per group
Attributes
- Returns
-
An iterator producing strings of size
size, except the last and the only element will be truncated if there are fewer elements than size. - See also
-
scala.collection.Iterator, method
sliding - Source
- NumericString.scala
Sorts this NumericString according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.
Sorts this NumericString according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.
Type parameters
- B
-
the target type of the transformation
f, and the type where the orderingordis defined.
Value parameters
- f
-
the transformation function mapping elements to some other domain
B. - ord
-
the ordering assumed on domain
B.
Attributes
- Returns
-
a string consisting of the elements of this
NumericStringsorted according to the ordering wherex < yiford.lt(f(x), f(y)). - See also
-
scala.math.Ordering
- Example
-
NumericString("212").sortBy(_.toInt) res13: String = 122 - Source
- NumericString.scala
Sorts this NumericString according to a comparison function.
Sorts this NumericString according to a comparison function.
The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.
Value parameters
- lt
-
the comparison function which tests whether its first argument precedes its second argument in the desired ordering.
Attributes
- Returns
-
a string consisting of the elements of this
NumericStringsorted according to the comparison functionlt. - Example
-
NumericString("212").sortWith(_.compareTo(_) < 0) res14: String = 122 - Source
- NumericString.scala
Sorts this NumericString according to an Ordering.
Sorts this NumericString according to an Ordering.
The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.
Value parameters
- ord
-
the ordering to be used to compare elements.
Attributes
- Returns
-
a string consisting of the elements of this
NumericStringsorted according to the orderingord. - See also
-
scala.math.Ordering
- Source
- NumericString.scala
Splits this NumericString into a prefix/suffix pair according to a predicate.
Splits this NumericString into a prefix/suffix pair according to a predicate.
Note: c span p is equivalent to (but possibly more efficient than) (c takeWhile p, c dropWhile p), provided the evaluation of the predicate p does not cause any side-effects.
Value parameters
- p
-
the test predicate
Attributes
- Returns
-
a pair of strings consisting of the longest prefix of this
NumericStringwhose elements all satisfyp, and the rest of thisNumericString. - Source
- NumericString.scala
Returns an array of strings produced by splitting NumericString at every location matching the supplied regex; the regex-matching characters are omitted from the output.
Returns an array of strings produced by splitting NumericString at every location matching the supplied regex; the regex-matching characters are omitted from the output.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- regex
-
string for pattern matching
Attributes
- Returns
-
array of strings produced by splitting
NumericStringat every location matching suppliedregex - Source
- NumericString.scala
Returns an array of strings produced by splitting NumericString at up to limit locations matching the supplied regex; the regex-matching characters are omitted from the output.
Returns an array of strings produced by splitting NumericString at up to limit locations matching the supplied regex; the regex-matching characters are omitted from the output.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- limit
-
maximum number of split output strings that will be generated by this function; further potential splits get ignored
- regex
-
string for pattern matching
Attributes
- Returns
-
array of strings produced by splitting
NumericStringat every location matching suppliedregex, up tolimitoccurrences - Source
- NumericString.scala
Returns an array of Strings resulting from splitting this NumericString at all points where one of the separators characters is encountered.
Returns an array of Strings resulting from splitting this NumericString at all points where one of the separators characters is encountered.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- separators
-
array of characters, any of which are valid split triggers
Attributes
- Returns
-
array of strings, after splitting
NumericStringat all points where one of theseparatorscharacters is encountered - Source
- NumericString.scala
Split this NumericString around the separator character
Split this NumericString around the separator character
If this NumericString is the empty string, returns an array of strings that contains a single empty string.
If this NumericString is not the empty string, returns an array containing the substrings terminated by the start of the string, the end of the string or the separator character, excluding empty trailing substrings
The behaviour follows, and is implemented in terms of String.split(re: String)
Value parameters
- separator
-
the character used as a delimiter
Attributes
- Example
-
scala> NumericString("1234").split('3') res15: Array[String] = Array(12, 4) // //splitting the empty string always returns the array with a single //empty string scala> NumericString("").split('3') res16: Array[String] = Array("") // //only trailing empty substrings are removed scala> NumericString("1234").split('4') res17: Array[String] = Array(123) // scala> NumericString("1234").split('1') res18: Array[String] = Array("", 234) // scala> NumericString("12341").split('1') res19: Array[String] = Array("", 234) // scala> NumericString("11211").split('1') res20: Array[String] = Array("", "", 2) // //all parts are empty and trailing scala> NumericString("1").split('1') res21: Array[String] = Array() // scala> NumericString("11").split('1') res22: Array[String] = Array() - Source
- NumericString.scala
Splits this NumericString into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).
Splits this NumericString into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).
Value parameters
- n
-
the position at which to split.
Attributes
- Returns
-
a pair of strings consisting of the first
nelements of thisNumericString, and the other elements. - Source
- NumericString.scala
Returns true if the NumericString content completely matches the supplied prefix, when both strings are aligned at their startpoints up to the length of prefix.
Returns true if the NumericString content completely matches the supplied prefix, when both strings are aligned at their startpoints up to the length of prefix.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- prefix
-
string for comparison as prefix
Attributes
- Returns
-
trueifNumericStringcontent is the same asprefixfor the entire length ofprefixfalseotherwise. - Source
- NumericString.scala
Returns true if the NumericString content completely matches the supplied prefix, starting at toffset characters in the NumericString.
Returns true if the NumericString content completely matches the supplied prefix, starting at toffset characters in the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- prefix
-
string for comparison as prefix
- toffset
-
zero-based integer start point for comparison within the
NumericString
Attributes
- Returns
-
trueifNumericStringcontent is the same asprefixfor the entire length ofprefixshifted over,falseotherwise. - Source
- NumericString.scala
Defines the prefix of this object's toString representation.
Defines the prefix of this object's toString representation.
Attributes
- Returns
-
a string representation which starts the result of
toStringapplied to thisNumericString. By default the string prefix is the simple name of the collection classNumericString. - Source
- NumericString.scala
Strip trailing line end character from this string if it has one.
Strip trailing line end character from this string if it has one.
A line end character is one of
LF- line feed (0x0Ahex)FF- form feed (0x0Chex)
If a line feed character LF is preceded by a carriage return CR (0x0D hex), the CR character is also stripped (Windows convention).
Attributes
- Source
- NumericString.scala
Strip a leading prefix consisting of blanks or control characters followed by | from the line.
Strip a leading prefix consisting of blanks or control characters followed by | from the line.
Attributes
- Source
- NumericString.scala
Strip a leading prefix consisting of blanks or control characters followed by marginChar from the line.
Strip a leading prefix consisting of blanks or control characters followed by marginChar from the line.
Attributes
- Source
- NumericString.scala
Returns this NumericString as a string with the given prefix stripped. If this NumericString does not start with prefix, it is returned unchanged.
Returns this NumericString as a string with the given prefix stripped. If this NumericString does not start with prefix, it is returned unchanged.
Attributes
- Source
- NumericString.scala
Returns this NumericString as a string with the given suffix stripped. If this NumericString does not end with suffix, it is returned unchanged.
Returns this NumericString as a string with the given suffix stripped. If this NumericString does not end with suffix, it is returned unchanged.
Attributes
- Source
- NumericString.scala
Returns the character sequence extracted from NumericString beginning at zero-based offset beginIndex and continuing until (but not including) offset endIndex.
Returns the character sequence extracted from NumericString beginning at zero-based offset beginIndex and continuing until (but not including) offset endIndex.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- beginIndex
-
zero-based integer offset at which character extraction begins
- endIndex
-
zero-based integer offset before which character extraction ends
Attributes
- Returns
-
CharSequence of zero or more extracted characters
- Source
- NumericString.scala
Returns a string extracted from NumericString from the zero-based beginIndex through the end of the string.
Returns a string extracted from NumericString from the zero-based beginIndex through the end of the string.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- beginIndex
-
zero-based integer offset at which substring extraction begins (continues through end of
NumericIndexstring)
Attributes
- Returns
-
returns string extracted from
NumericString - Source
- NumericString.scala
Returns a string extracted NumericString starting from the zero-based beginIndex through but not including the zero-based endIndex offset.
Returns a string extracted NumericString starting from the zero-based beginIndex through but not including the zero-based endIndex offset.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Value parameters
- beginIndex
-
zero-based integer offset at which substring extraction begins
- endIndex
-
zero-based integer offset before which substring extraction ends
Attributes
- Returns
-
returns string extracted from
NumericString - Source
- NumericString.scala
Sums up the elements of this collection.
Sums up the elements of this collection.
Attributes
- Returns
-
the sum of all character values in this
NumericString - Source
- NumericString.scala
Selects all elements except the first.
Selects all elements except the first.
Attributes
- Returns
-
a string consisting of all elements of this
NumericStringexcept the first one. - Throws
-
UnsupportedOperationException
if the
NumericStringis empty. - Source
- NumericString.scala
Iterates over the tails of this NumericString. The first value will be this NumericString as a string and the final one will be an empty string, with the intervening values the results of successive applications of tail.
Iterates over the tails of this NumericString. The first value will be this NumericString as a string and the final one will be an empty string, with the intervening values the results of successive applications of tail.
Attributes
- Returns
-
an iterator over all the tails of this
NumericString - Example
-
scala> NumericString("123").tails.toList res31: List[String] = List(123, 23, 3, "") - Source
- NumericString.scala
Selects first ''n'' elements.
Selects first ''n'' elements.
Value parameters
- n
-
the number of elements to take from this
NumericString.
Attributes
- Returns
-
a string consisting only of the first
nelements of thisNumericString, or else the wholeNumericString, if it has less thannelements. - Source
- NumericString.scala
Selects last ''n'' elements.
Selects last ''n'' elements.
Value parameters
- n
-
the number of elements to take
Attributes
- Returns
-
a string consisting only of the last
nelements of thisNumericString, or else the wholeNumericString, if it has less thannelements. - Source
- NumericString.scala
Takes longest prefix of elements that satisfy a predicate.
Takes longest prefix of elements that satisfy a predicate.
Value parameters
- p
-
The predicate used to test elements.
Attributes
- Returns
-
the longest prefix of this
NumericStringwhose elements all satisfy the predicatep. - Source
- NumericString.scala
Converts this NumericString to an array.
Converts this NumericString to an array.
Attributes
- Returns
-
an array containing all elements of this
NumericString. - Source
- NumericString.scala
Uses the contents of this NumericString to create a new mutable buffer.
Uses the contents of this NumericString to create a new mutable buffer.
Attributes
- Returns
-
a buffer containing all elements of this
NumericString. - Source
- NumericString.scala
Parse as a Byte
Parse as a Byte
Attributes
- Throws
-
java.lang.NumberFormatException
If the string does not contain a parsable
Byte. - Source
- NumericString.scala
Returns an array of Unicode characters corresponding to the NumericString.
Returns an array of Unicode characters corresponding to the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Attributes
- Returns
-
array of Unicode characters corresponding to the
NumericString - Source
- NumericString.scala
Parse as a Double.
Parse as a Double.
Attributes
- Throws
-
java.lang.NumberFormatException
If the string does not contain a parsable
Double. - Source
- NumericString.scala
Parse as a Float.
Parse as a Float.
Attributes
- Throws
-
java.lang.NumberFormatException
If the string does not contain a parsable
Float. - Source
- NumericString.scala
Converts this NumericString to an indexed sequence.
Converts this NumericString to an indexed sequence.
Attributes
- Returns
-
an indexed sequence containing all elements of this
NumericString. - Source
- NumericString.scala
Parse as an Int
Parse as an Int
Attributes
- Throws
-
java.lang.NumberFormatException
If the string does not contain a parsable
Int. - Source
- NumericString.scala
Converts this NumericString to an iterable collection.
Converts this NumericString to an iterable collection.
Attributes
- Returns
-
an
Iterablecontaining all elements of thisNumericString. - Source
- NumericString.scala
Returns an Iterator over the elements in this NumericString.
Returns an Iterator over the elements in this NumericString.
Attributes
- Returns
-
an Iterator containing all elements of this
NumericString. - Source
- NumericString.scala
Converts this NumericString to a list.
Converts this NumericString to a list.
Attributes
- Returns
-
a list containing all elements of this
NumericString. - Source
- NumericString.scala
Parse as a Long.
Parse as a Long.
Attributes
- Throws
-
java.lang.NumberFormatException
If the string does not contain a parsable
Long. - Source
- NumericString.scala
Converts this NumericString to a sequence.
Converts this NumericString to a sequence.
Attributes
- Returns
-
a sequence containing all elements of this
NumericString. - Source
- NumericString.scala
Converts this NumericString to a set.
Converts this NumericString to a set.
Attributes
- Returns
-
a set containing all elements of this
NumericString. - Source
- NumericString.scala
Parse as a Short.
Parse as a Short.
Attributes
- Throws
-
java.lang.NumberFormatException
If the string does not contain a parsable
Short. - Source
- NumericString.scala
Converts this NumericString to a stream.
Converts this NumericString to a stream.
Attributes
- Returns
-
a stream containing all elements of this
NumericString. - Source
- NumericString.scala
A string representation of this NumericString.
A string representation of this NumericString.
Attributes
- Definition Classes
-
Any
- Source
- NumericString.scala
Converts this NumericString to an unspecified Traversable.
Converts this NumericString to an unspecified Traversable.
Attributes
- Returns
-
a Traversable containing all elements of this
NumericString. - Source
- NumericString.scala
Converts this NumericString to a Vector.
Converts this NumericString to a Vector.
Attributes
- Returns
-
a vector containing all elements of this
NumericString. - Source
- NumericString.scala
Return new string resulting from removing any whitespace characters from the start and end of the NumericString.
Return new string resulting from removing any whitespace characters from the start and end of the NumericString.
For more detail, see the documentation for the corresponding method in the Javadoc documentation for java.lang.String.
Attributes
- Returns
-
string resulting from removing any whitespace characters from start and end of original string
- Source
- NumericString.scala
Produces a new sequence which contains all elements of this NumericString and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.
Produces a new sequence which contains all elements of this NumericString and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.
Another way to express this is that xs union ys computes the order-preserving multi-set union of xs and ys. union is hence a counter-part of diff and intersect which also work on multi-sets.
Attributes
- Returns
-
a new string which contains all elements of this
NumericStringfollowed by all elements ofthat. - Source
- NumericString.scala
A copy of this NumericString with one single replaced element.
A copy of this NumericString with one single replaced element.
Value parameters
- elem
-
the replacing element
- index
-
the position of the replacement
Attributes
- Returns
-
a string copy of this
NumericStringwith the element at positionindexreplaced byelem. - Throws
-
IndexOutOfBoundsException
if
indexdoes not satisfy0 <= index < length. - Source
- NumericString.scala
Creates a non-strict view of this NumericString.
Creates a non-strict view of this NumericString.
Attributes
- Returns
-
a non-strict view of this
NumericString. - Source
- NumericString.scala
Creates a non-strict filter of this NumericString.
Creates a non-strict filter of this NumericString.
Note: the difference between c filter p and c withFilter p is that the former creates a new collection, whereas the latter only restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
an object of class
WithFilter, which supportsmap,flatMap,foreach, andwithFilteroperations. All these operations apply to those elements of thisNumericStringwhich satisfy the predicatep. - Source
- NumericString.scala
Returns a Iterable of pairs formed from this NumericString and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.
Returns a Iterable of pairs formed from this NumericString and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.
Type parameters
- B
-
the type of the second half of the returned pairs
Value parameters
- that
-
The iterable providing the second half of each result pair
Attributes
- Returns
-
a collection containing pairs consisting of corresponding elements of this
NumericStringandthat. The length of the returned collection is the minimum of the lengths of thisNumericStringandthat. - Source
- NumericString.scala
Returns a collection of pairs formed from this NumericString and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.
Returns a collection of pairs formed from this NumericString and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.
Type parameters
- B
-
the type of the second half of the returned pairs
Value parameters
- that
-
the iterable providing the second half of each result pair
- thatElem
-
the element to be used to fill up the result if
thatis shorter than thisNumericString. - thisElem
-
the element to be used to fill up the result if this
NumericStringis shorter thanthat.
Attributes
- Returns
-
a new
Iterableconsisting of corresponding elements of thisNumericStringandthat. The length of the returned collection is the maximum of the lengths of thisNumericStringandthat. If thisNumericStringis shorter thanthat,thisElemvalues are used to pad the result. Ifthatis shorter than thisNumericString,thatElemvalues are used to pad the result. - Source
- NumericString.scala
Zips this NumericString with its indices.
Zips this NumericString with its indices.
Attributes
- Returns
-
A new
Iterablecontaining pairs consisting of all characters of thisNumericStringpaired with their index. Indices start at0. - Example
-
scala> NumericString("123").zipWithIndex res41: scala.collection.immutable.IndexedSeq[(Char, Int)] = Vector((1,0), (2,1), (3,2)) - Source
- NumericString.scala
Concrete fields
Attributes
- Source
- NumericString.scala