method Date
Documentation for method Date
assembled from the following types:
class Date
From Date
(Date) method Date
Defined as:
method Date(--> Date)
Returns the invocant.
say Date.new('2015-12-24').Date; # OUTPUT: «2015-12-24»say Date.Date; # OUTPUT: «(Date)»
class Instant
From Instant
(Instant) method Date
Defined as:
method Date(Instant: --> Date)
Coerces the invocant to Date.
my = "/etc/passwd".IO.modified;say ; # OUTPUT: «Instant:1451489025.878018»say .Date; # OUTPUT: «2015-12-30»
class DateTime
From DateTime
(DateTime) method Date
Defined as:
multi method Date(DateTime --> Date)multi method Date(DateTime --> Date)
Converts the invocant to Date
.
say DateTime.new("2012-02-29T12:34:56.946314Z").Date; # OUTPUT: «2012-02-29»say DateTime.Date; # OUTPUT: «(Date)»