Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initializer for PartialResult #110

Merged
merged 2 commits into from
Feb 13, 2024
Merged

Conversation

RincewindsHat
Copy link
Member

This commit adds a NewPartialResult function which returns a PartialResult struct with "sane" default, mainly setting the defaultState to "Unknown".

This should help developers implementing this library, since it avoids the following pattern:

sc := result.PartialResult{}
sc.setDefaultState(check.Unknown)

This pattern is quite common, but in a sense useless.

This commit adds a NewPartialResult function which returns a
PartialResult struct with "sane" default, mainly setting the
defaultState to "Unknown".

This should help developers implementing this library, since it
avoids the following pattern:

sc := result.PartialResult{}
sc.setDefaultState(check.Unknown)

This pattern is quite common, but in a sense useless.
@@ -41,6 +41,13 @@ type PartialResult struct {
defaultStateSet bool // nolint: unused
}

func NewPartialResult() PartialResult {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look alright. But could you add a doc string for the function, maybe describe why the defaults are what they are?

@RincewindsHat RincewindsHat merged commit fa1c479 into master Feb 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants