Documentation for method Date
assembled from the following pages:
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: 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)»
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: Str §
From Str
(Str) method Date §
Defined as:
method Date(Str:)
Coerces a Str
to a Date
object, provided the string is properly formatted. Date(Str)
also works.
Examples:
say '2015-11-24'.Date.year; # OUTPUT: «2015» say Date('2015-11-24').year; # OUTPUT: «2015»