RealDocs

40 results for "timespan" in function

function
UKismetMathLibrary::TimespanFromString Engine

Parses an FTimespan from its canonical string representation.

function
UKismetMathLibrary::TimespanMaxValue Engine

Returns the maximum representable FTimespan, approximately 10,675,199 days.

function
UKismetMathLibrary::TimespanMinValue Engine

Returns the minimum (most negative) representable FTimespan, approximately -10,675,199 days.

function
UKismetMathLibrary::TimespanRatio Engine

Computes the ratio A / B as a float, returning 0.

function
UKismetMathLibrary::TimespanZeroValue Engine

Returns a zero-duration FTimespan.

function
UKismetMathLibrary::Add_DateTimeTimespan Engine

Adds a timespan duration to a date-time value, returning a new FDateTime shifted forward by that amount.

function
UKismetMathLibrary::Add_TimespanTimespan Engine

Returns A + B as a new FTimespan.

function
UKismetMathLibrary::BreakTimespan Engine

Decomposes an FTimespan into its individual days, hours, minutes, seconds, and milliseconds components.

function
UKismetMathLibrary::BreakTimespan2 Engine

Decomposes an FTimespan into days, hours, minutes, seconds, and a nanosecond fraction.

function
UKismetMathLibrary::Divide_TimespanFloat Engine

Divides a timespan by a float scalar, returning a new FTimespan.

function
UKismetMathLibrary::EqualEqual_TimespanTimespan Engine

Returns true if A and B represent exactly the same duration.

function
UKismetMathLibrary::GreaterEqual_TimespanTimespan Engine

Returns true if A is greater than or equal to B.

function
UKismetMathLibrary::Greater_TimespanTimespan Engine

Returns true if A is strictly greater than B.

function
UKismetMathLibrary::LessEqual_TimespanTimespan Engine

Returns true if A is less than or equal to B.

function
UKismetMathLibrary::Less_TimespanTimespan Engine

Returns true if A is strictly less than B.

function
UKismetMathLibrary::MakeTimespan Engine

Constructs an FTimespan from individual time components.

function
UKismetMathLibrary::MakeTimespan2 Engine

Constructs an FTimespan from days, hours, minutes, seconds, and a nanosecond fraction.

function
UKismetMathLibrary::Multiply_TimespanFloat Engine

Scales a timespan by a float multiplier, returning a new FTimespan.

function
UKismetMathLibrary::NotEqual_TimespanTimespan Engine

Returns true if A and B do not represent exactly the same duration.

function
UKismetMathLibrary::Subtract_DateTimeTimespan Engine

Subtracts a timespan duration from a date-time value, returning a new FDateTime shifted backward by that amount.

function
UKismetMathLibrary::Subtract_TimespanTimespan Engine

Returns A - B as a new FTimespan.

function
UKismetMathLibrary::Add_DateTimeDateTime Engine

Adds two FDateTime values by summing their raw tick counts and returns the result as a new FDateTime.

function
UKismetMathLibrary::FromDays Engine

Constructs an FTimespan from a number of days.

function
UKismetMathLibrary::FromHours Engine

Constructs an FTimespan representing the given number of hours.

function
UKismetMathLibrary::FromMilliseconds Engine

Constructs an FTimespan from a number of milliseconds.

function
UKismetMathLibrary::FromMinutes Engine

Constructs an FTimespan representing the given number of minutes.

function
UKismetMathLibrary::FromSeconds Engine

Constructs an FTimespan from a number of seconds.

function
UKismetMathLibrary::GetDays Engine

Returns the days component of the timespan as an integer.

function
UKismetMathLibrary::GetDuration Engine

Returns the absolute value (magnitude) of A as a new non-negative FTimespan.

function
UKismetMathLibrary::GetHours Engine

Returns the hours component of the timespan (the whole hours remaining after extracting full days).

function
UKismetMathLibrary::GetMilliseconds Engine

Returns the milliseconds component of the timespan (0–999 for positive spans).

function
UKismetMathLibrary::GetMinutes Engine

Returns the minutes component of the timespan (whole minutes remaining after extracting full hours).

function
UKismetMathLibrary::GetSeconds Engine

Returns the seconds component of the timespan (whole seconds remaining after extracting full minutes).

function
UKismetMathLibrary::GetTimeOfDay Engine

Returns the time elapsed since midnight of the given date as an FTimespan in the range [0, 24 hours).

function
UKismetMathLibrary::GetTotalDays Engine

Returns the total number of days represented by the timespan as a double, including the fractional part.

function
UKismetMathLibrary::GetTotalHours Engine

Returns the total elapsed time of the timespan expressed as a fractional number of hours.

function
UKismetMathLibrary::GetTotalMilliseconds Engine

Returns the total elapsed time of the timespan expressed as a fractional number of milliseconds.

function
UKismetMathLibrary::GetTotalMinutes Engine

Returns the total elapsed time of the timespan as a fractional number of minutes, rolling up all days, hours, seconds, and sub-second components into a single value.

function
UKismetMathLibrary::GetTotalSeconds Engine

Returns the total elapsed time of the timespan as a fractional number of seconds, combining all components into one value.

function
UKismetMathLibrary::Subtract_DateTimeDateTime Engine

Returns the elapsed time between two FDateTime values as an FTimespan.