W3cubDocs

/Crystal

struct Time::Span

Overview

Time::Span represents one period of time.

A Time::Span initializes with the specified period. Different numbers of arguments generate a Time::Span in different length. Check all #new methods for details.

Time::Span.new(nanoseconds: 10_000)                           # => 00:00:00.000010000
Time::Span.new(hours: 10, minutes: 10, seconds: 10)           # => 10:10:10
Time::Span.new(days: 10, hours: 10, minutes: 10, seconds: 10) # => 10.10:10:10

Calculation between Time also returns a Time::Span.

span = Time.utc(2015, 10, 10) - Time.utc(2015, 9, 10)
span       # => 30.00:00:00
span.class # => Time::Span

Inspection:

span = Time::Span.new(hours: 20, minutes: 10, seconds: 10)
span.hours   # => 20
span.minutes # => 10
span.seconds # => 10

Calculation:

a = Time::Span.new(hours: 20, minutes: 10, seconds: 10)
b = Time::Span.new(hours: 10, minutes: 10, seconds: 10)
c = a - b # => 10:00:00
c.hours   # => 10

Included Modules

Defined in:

time/span.cr

Constant Summary

MAX = new(seconds: Int64::MAX, nanoseconds: 999999999)
MIN = new(seconds: Int64::MIN, nanoseconds: -999999999)
ZERO = new(nanoseconds: 0)

Constructors

Class Method Summary

Instance Method Summary

Instance methods inherited from module Comparable(Time::Span)

<, <=(other : T) <=, <=>(other : T) <=>, ==(other : T) ==, >(other : T) >, >=(other : T) >=, clamp(min, max)
clamp(range : Range) clamp

Instance methods inherited from struct Struct

==(other) : Bool ==, hash(hasher) hash, inspect(io : IO) : Nil inspect, pretty_print(pp) : Nil pretty_print, to_s(io : IO) : Nil to_s

Instance methods inherited from struct Value

==(other : JSON::Any)
==(other : YAML::Any)
==(other) ==
, dup dup

Instance methods inherited from class Object

! : Bool !, !=(other) !=, !~(other) !~, ==(other) ==, ===(other : JSON::Any)
===(other : YAML::Any)
===(other) ===
, =~(other) =~, as(type : Class) as, as?(type : Class) as?, class class, dup dup, hash(hasher)
hash hash
, in?(*values : Object) : Bool
in?(collection) : Bool in?
, inspect : String
inspect(io : IO) : Nil inspect
, is_a?(type : Class) : Bool is_a?, itself itself, nil? : Bool nil?, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, responds_to?(name : Symbol) : Bool responds_to?, tap(&) tap, to_json(io : IO)
to_json to_json
, to_pretty_json(io : IO, indent : String = " ")
to_pretty_json(indent : String = " ") to_pretty_json
, to_s : String
to_s(io : IO) : Nil to_s
, to_yaml(io : IO)
to_yaml to_yaml
, try(&) try, unsafe_as(type : T.class) forall T unsafe_as

Class methods inherited from class Object

from_json(string_or_io, root : String)
from_json(string_or_io) from_json
, from_yaml(string_or_io : String | IO) from_yaml

Constructor Detail

def self.new(_days : Int, _hours : Int, _minutes : Int, _seconds : Int, nanoseconds : Int = 0)Source

DEPRECATED Use .new with named arguments instead.

def self.new(_hours : Int, _minutes : Int, _seconds : Int)Source

DEPRECATED Use .new with named arguments instead.

def self.new(*, seconds : Int, nanoseconds : Int)Source

Creates a new Time::Span from seconds and nanoseconds.

Nanoseconds get normalized in the range of 0...1_000_000_000, the nanosecond overflow gets added as seconds.

Time::Span.new(seconds: 30)                 # => 00:00:30
Time::Span.new(seconds: 5, nanoseconds: 12) # => 00:00:05.000000012

def self.new(*, nanoseconds : Int)Source

Creates a new Time::Span from the nanosenconds given

Nanoseconds get normalized in the range of 0...1_000_000_000, the nanosecond overflow gets added as seconds.

Time::Span.new(nanoseconds: 500_000_000)   # => 00:00:00.500000000
Time::Span.new(nanoseconds: 5_500_000_000) # => 00:00:05.500000000

def self.new(*, days : Int = 0, hours : Int = 0, minutes : Int = 0, seconds : Int = 0, nanoseconds : Int = 0)Source

Creates a new Time::Span from the days, hours, minutes, seconds and nanoseconds given

Any time unit can be omitted.

Time::Span.new(days: 1)                                                   # => 1.00:00:00
Time::Span.new(days: 1, hours: 2, minutes: 3)                             # => 01:02:03
Time::Span.new(days: 1, hours: 2, minutes: 3, seconds: 4, nanoseconds: 5) # => 1.02:03:04.000000005

Class Method Detail

def self.zero : Time::SpanSource

Instance Method Detail

def *(number : Int) : Time::SpanSource

Returns a Time::Span that is number times longer.

def *(number : Float) : Time::SpanSource

Returns a Time::Span that is number times longer.

def +(other : self) : Time::SpanSource

def + : selfSource

def - : Time::SpanSource

def -(other : self) : Time::SpanSource

def /(number : Int) : Time::SpanSource

Returns a Time::Span that is divided by number.

def /(number : Float) : Time::SpanSource

Returns a Time::Span that is divided by number.

def /(other : self) : Float64Source

def <=>(other : self)Source

def abs : Time::SpanSource

Returns the absolute (non-negative) amount of time this Time::Span represents by removing the sign.

def ago : TimeSource

Returns a Time that happens earlier by self than the current time.

def days : Int64Source

Returns the number of full days in this time span.

(5.days + 25.hours).days # => 6_i64

def duration : Time::SpanSource

Alias of #abs.

def from_now : TimeSource

Returns a Time that happens later by self than the current time.

def hours : Int32Source

Returns the number of full hours of the day (0..23) in this time span.

def inspect(io : IO) : NilSource

Description copied from struct Struct

Appends this struct's name and instance variables names and values to the given IO.

struct Point
  def initialize(@x : Int32, @y : Int32)
  end
end

p1 = Point.new 1, 2
p1.to_s    # "Point(@x=1, @y=2)"
p1.inspect # "Point(@x=1, @y=2)"

def microseconds : Int32Source

Returns the number of microseconds of the second (0..999999) in this time span.

def milliseconds : Int32Source

Returns the number of milliseconds of the second (0..999) in this time span.

def minutes : Int32Source

Returns the number of full minutes of the hour (0..59) in this time span.

def nanoseconds : Int32Source

Returns the number of nanoseconds of the second (0..999_999_999) in this time span.

def seconds : Int32Source

Returns the number of full seconds of the minute (0..59) in this time span.

def to_f : Float64Source

Alias of #total_seconds.

def to_i : Int64Source

Returns the number of full seconds.

def total_days : Float64Source

Converts to a (possibly fractional) number of days.

(36.hours).total_days # => 1.5

def total_hours : Float64Source

Converts to a (possibly fractional) number of hours.

def total_microseconds : Float64Source

Converts to a number of microseconds.

def total_milliseconds : Float64Source

Converts to a number of milliseconds.

def total_minutes : Float64Source

Converts to a (possibly fractional) number of minutes.

def total_nanoseconds : Float64Source

Converts to a number of nanoseconds.

def total_seconds : Float64Source

Converts to a (possibly fractional) number of seconds.

def total_weeks : Float64Source

Converts to a (possibly fractional) number of weeks.

(4.weeks + 5.days + 6.hours).total_weeks # => 4.75

def zero? : BoolSource

© 2012–2020 Manas Technology Solutions.
Licensed under the Apache License, Version 2.0.
https://crystal-lang.org/api/0.35.1/Time/Span.html