class Allomorph

Dual value number and string
class Allomorph is Str { }

The Allomorph class is a common parent class for Raku's dual value types: ComplexStr, IntStr, NumStr, RatStr.

The dual value types (often referred to as allomorphs) allow for the representation of a value as both a string and a numeric type. Typically they will be created for you when the context is "stringy" but they can be determined to be numbers, such as in some quoting constructs:

my $c = <42+0i>;  say $c.^name; # OUTPUT: Ā«ComplexStrā¤Ā»
    my $i = <42>;     say $i.^name; # OUTPUT: Ā«IntStrā¤Ā»
    my $n = <42.1e0>; say $n.^name; # OUTPUT: Ā«NumStrā¤Ā»
    my $r = <42.1>;   say $r.^name; # OUTPUT: Ā«RatStrā¤Ā»

As a subclass of both a Numeric class and Str, via the Allomorph class, an allomorph will be accepted where either is expected. However, an allomorph does not share object identity with its Numeric parent class- or Str-only variants:

my ($complex-str, $int-str, $num-str, $rat-str)
           = < 42+0i 42 42e10 42.1 >;

my (Complex $complex, Int $int, Num $num, Rat $rat)
           =  $complex-str, $int-str, $num-str, $rat-str;  # OK!

my Str @strings
           =  $complex-str, $int-str, $num-str, $rat-str;  # OK!

# āˆˆ operator cares about object identity
say 42+0i āˆˆ < 42+0i 42 42e10 42.1 >;  # OUTPUT: Ā«Falseā¤Ā»
say 42    āˆˆ < 42+0i 42 42e10 42.1 >;  # OUTPUT: Ā«Falseā¤Ā»
say 42e10 āˆˆ < 42+0i 42 42e10 42.1 >;  # OUTPUT: Ā«Falseā¤Ā»
say 42.1  āˆˆ < 42+0i 42 42e10 42.1 >;  # OUTPUT: Ā«Falseā¤Ā»

Please see the Numerics page for a more complete description on how to work with these allomorphs.

Methods

method ACCEPTS

multi method ACCEPTS(Allomorph:D: Any:D \a)

If the a parameter is Numeric (including another allomorph), checks if invocant's Numeric value ACCEPTS a. If the a parameter is Str, checks if invocant's Str value ACCEPTS a. If the a parameter is anything else, checks if both Numeric and Str values of the invocant ACCEPTS a.

say "5.0" ~~ <5>; # OUTPUT: Ā«Falseā¤Ā»
    say 5.0   ~~ <5>; # OUTPUT: Ā«Trueā¤Ā»
    say <5.0> ~~ <5>; # OUTPUT: Ā«Trueā¤Ā»

method Bool

multi method Bool(::?CLASS:D:)

Returns False if the invocant is numerically 0, otherwise returns True. The Str value of the invocant is not considered.

Note: For the Allomorph subclass RatStr also see Rational.Bool.

method chomp

method chomp(Allomorph:D:)

Calls Str.chomp on the invocant's Str value.

method chop

method chop(Allomorph:D: |c)

Calls Str.chop on the invocant's Str value.

method comb

method comb(Allomorph:D: |c)

Calls Str.comb on the invocant's Str value.

method fc

method fc(Allomorph:D:)

Calls Str.fc on the invocant's Str value.

method flip

method flip(Allomorph:D:)

Calls Str.flip on the invocant's Str value.

method lc

method lc(Allomorph:D:)

Calls Str.lc on the invocant's Str value.

method pred

method pred(Allomorph:D:)

Calls Numeric.pred on the invocant's numeric value.

method raku

multi method raku(Allomorph:D:)

Return a representation of the object that can be used via EVAL to reconstruct the value of the object.

method samecase

method samecase(Allomorph:D: |c)

Calls Str.samecase on the invocant's Str value.

method samemark

method samemark(Allomorph:D: |c)

Calls Str.samemark on the invocant's Str value.

method split

method split(Allomorph:D: |c)

Calls Str.split on the invocant's Str value.

method Str

method Str(Allomorph:D:)

Returns the Str value of the invocant.

method subst

method subst(Allomorph:D: |c)

Calls Str.subst on the invocant's Str value.

method subst-mutate

method subst-mutate(Allomorph:D \SELF: |c)

Calls Str.subst-mutate on the invocant's Str value.

method substr

method substr(Allomorph:D: |c)

Calls Str.substr on the invocant's Str value.

method substr-rw

method substr-rw(Allomorph:D \SELF: $start = 0, $want = Whatever)

Calls Str.substr-rw on the invocant's Str value.

method succ

method succ(Allomorph:D:)

Calls Numeric.succ on the invocant's numeric value.

method tc

method tc(Allomorph:D:)

Calls Str.tc on the invocant's Str value.

method tclc

method tclc(Allomorph:D:)

Calls Str.tclc on the invocant's Str value.

method trim

method trim(Allomorph:D:)

Calls Str.trim on the invocant's Str value.

method trim-leading

method trim-leading(Allomorph:D:)

Calls Str.trim-leading on the invocant's Str value.

method trim-trailing

method trim-trailing(Allomorph:D:)

Calls Str.trim-trailing on the invocant's Str value.

method uc

method uc(Allomorph:D:)

Calls Str.uc on the invocant's Str value.

method WHICH

multi method WHICH(Allomorph:D:)

Returns an object of type ValueObjAt which uniquely identifies the object.

my $f = <42.1e0>;
    say $f.WHICH;     # OUTPUT: Ā«NumStr|Num|42.1|Str|42.1e0ā¤Ā»

Operators

infix cmp

multi infix:<cmp>(Allomorph:D $a, Allomorph:D $b)

Compare two Allomorph objects. The comparison is done on the Numeric value first and then on the Str value. If you want to compare in a different order then you would coerce to a Numeric or Str value first:

my $f = IntStr.new(42, "smaller");
    my $g = IntStr.new(43, "larger");
    say $f cmp $g;          # OUTPUT: Ā«Lessā¤Ā»
    say $f.Str cmp $g.Str;  # OUTPUT: Ā«Moreā¤Ā»

infix eqv

multi infix:<eqv>(Allomorph:D $a, Allomorph:D $b --> Bool:D)

Returns True if the two Allomorph $a and $b are of the same type, their Numeric values are equivalent and their Str values are also equivalent. Returns False otherwise.

See Also

class int

Native integer

class Any

Thing/object

class AST

Abstract representation of a piece of source code

class atomicint

Integer (native storage at the platform's atomic operation size)

class Block

Code object with its own lexical scope

class CallFrame

Captures the current frame state

class Code

Code object

class Collation

Encapsulates instructions about how strings should be sorted

class Compiler

Information related to the compiler that is being used

class Complex

Complex number

class ComplexStr

Dual value complex number and string

class Cool

Object that can be treated as both a string and number

class CurrentThreadScheduler

Scheduler that synchronously executes code on the current thread

class Date

Calendar date

class DateTime

Calendar date with time

class Distribution::Hash

Distribution::Hash

class Distribution::Locally

Distribution::Locally

class Distribution::Path

Distribution::Path

class Distribution::Resource

Every one of the resources installed with a distribution

class Duration

Length of time

class Encoding::Registry

Management of available encodings

class FatRat

Rational number (arbitrary-precision)

class ForeignCode

Rakudo-specific class that wraps around code in other languages (generally NQP)

class Format

Convert values to a string given a format specification

class Formatter

Produce Callable for given format specification

class HyperSeq

An object for performing batches of work in parallel with ordered output

class HyperWhatever

Placeholder for multiple unspecified values/arguments

class Instant

Specific moment in time

class Int

Integer (arbitrary-precision)

class IntStr

Dual value integer and string

class Junction

Logical superposition of values

class Label

Tagged location in the source code

class Lock::Async

A non-blocking, non-re-entrant, mutual exclusion lock

class Macro

Compile-time routine

class Method

Member function

class Mu

The root of the Raku type hierarchy.

class Nil

Absence of a value or a benign failure

class Num

Floating-point number

role Numeric

Number or object that can act as a number

class NumStr

Dual value floating-point number and string

class ObjAt

Unique identification for an object

class Parameter

Element of a Signature

class Perl

Perl related information

class Proxy

Item container with custom storage and retrieval

class RaceSeq

Performs batches of work in parallel without respecting original order.

class Raku

Raku related information

package RakuAST

Namespace for holding RakuAST related classes

class RakuAST::Doc::Block

Contains the information of a RakuDoc block

class RakuAST::Doc::Declarator

Contains the declarator docs of a RakuAST object

class RakuAST::Doc::Markup

Contains the information about RakuDoc markup

class RakuAST::Doc::Paragraph

Contains the information about a RakuDoc paragraph

class Rat

Rational number (limited-precision)

class RatStr

Dual value rational number and string

class Routine

Code object with its own lexical scope and return handling

class Routine::WrapHandle

Holds all information needed to unwrap a wrapped routine.

class Scalar

A mostly transparent container used for indirections

class Signature

Parameter list pattern

class Str

String of characters

class StrDistance

Contains the result of a string transformation.

class Sub

Subroutine

class Submethod

Member function that is not inherited by subclasses

class Telemetry

Collect performance state for analysis

class Telemetry::Instrument::Thread

Instrument for collecting Thread data

class Telemetry::Instrument::ThreadPool

Instrument for collecting ThreadPoolScheduler data

class Telemetry::Instrument::Usage

Instrument for collecting getrusage data

class Telemetry::Period

Performance data over a period

class Telemetry::Sampler

Telemetry instrument pod

Subset UInt

Unsigned integer (arbitrary-precision)

class ValueObjAt

Unique identification for value types

class Variable

Object representation of a variable for use in traits

class Version

Module version descriptor

class Whatever

Placeholder for the value of an unspecified argument

class WhateverCode

Code object constructed by Whatever-priming

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.