class Build::Files::State::FileTime

Represents a specific file on disk with a specific mtime.

def <=> other

@returns [Integer] -1, 0, or 1 for less than, equal, or greater than.
@parameter other [FileTime] The other file time to compare.
Compare file times for ordering.
def <=> other
	@time <=> other.time
end

def initialize(path, time)

@parameter time [Time] The modification time.
@parameter path [Path] The file path.
Initialize a file time record.
def initialize(path, time)
	@path = path
	@time = time
end

def inspect

@returns [String] A debug string showing path and time.
Generate a string representation for debugging.
def inspect
	"<FileTime #{@path.inspect} #{@time.inspect}>"
end