You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
import (
"fmt""github.com/kashifkhan0771/utils/maps"
)
funcmain() {
// Create a new StateMapstate:=maps.NewStateMap()
// Set a state to truestate.SetState("isActive", true)
// Get the stateifstate.IsState("isActive") {
fmt.Println("The state 'isActive' is true.")
} else {
fmt.Println("The state 'isActive' is false.")
}
}
Output:
The state 'isActive' is true.
StateMap Example - Toggle a State
package main
import (
"fmt""github.com/kashifkhan0771/utils/maps"
)
funcmain() {
// Create a new StateMapstate:=maps.NewStateMap()
// Set a state to truestate.SetState("isActive", true)
// Toggle the statestate.ToggleState("isActive")
// Check if the state is now falseif!state.IsState("isActive") {
fmt.Println("The state 'isActive' has been toggled to false.")
}
}
Output:
The state 'isActive' has been toggled to false.
StateMap Example - Check if State Exists
package main
import (
"fmt""github.com/kashifkhan0771/utils/maps"
)
funcmain() {
// Create a new StateMapstate:=maps.NewStateMap()
// Set some statesstate.SetState("isActive", true)
state.SetState("isVerified", false)
// Check if the state existsifstate.HasState("isVerified") {
fmt.Println("State 'isVerified' exists.")
} else {
fmt.Println("State 'isVerified' does not exist.")
}
}
Output:
State 'isVerified' exists.
Metadata Example - Update and Retrieve Values
package main
import (
"fmt""github.com/kashifkhan0771/utils/maps"
)
funcmain() {
// Create a new Metadata mapmeta:=maps.NewMetadata()
// Update metadata with key-value pairsmeta.Update("author", "John Doe")
meta.Update("version", "1.0.0")
// Retrieve metadata valuesfmt.Println("Author:", meta.Value("author"))
fmt.Println("Version:", meta.Value("version"))
}
Output:
Author: John Doe
Version: 1.0.0
Metadata Example - Check if Key Exists
package main
import (
"fmt""github.com/kashifkhan0771/utils/maps"
)
funcmain() {
// Create a new Metadata mapmeta:=maps.NewMetadata()
// Update metadata with key-value pairsmeta.Update("author", "John Doe")
// Check if the key existsifmeta.Has("author") {
fmt.Println("Key 'author' exists.")
} else {
fmt.Println("Key 'author' does not exist.")
}
// Check for a non-existent keyifmeta.Has("publisher") {
fmt.Println("Key 'publisher' exists.")
} else {
fmt.Println("Key 'publisher' does not exist.")
}
}