MCPcopy Create free account
hub / github.com/driangle/taskmd / IsResolved

Method IsResolved

sdk/go/model/task.go:74–76  ·  view source on GitHub ↗

IsResolved returns true if the status represents a terminal state where the task is no longer active (completed or cancelled).

()

Source from the content-addressed store, hash-verified

72// IsResolved returns true if the status represents a terminal state
73// where the task is no longer active (completed or cancelled).
74func (s Status) IsResolved() bool {
75 return s == StatusCompleted || s == StatusCancelled
76}
77
78// Priority represents the importance level of a task
79type Priority string

Callers 5

applyTerminalDateLogicFunction · 0.80
TestStatus_IsResolvedFunction · 0.80
HasIncompleteChildrenFunction · 0.80
calculateDepthMapFunction · 0.80

Calls

no outgoing calls

Tested by 1

TestStatus_IsResolvedFunction · 0.64