Browse Source

Code comments

Volodymyr Tkach 2 years ago
parent
commit
a9c84153db
3 changed files with 12 additions and 0 deletions
  1. 4 0
      session/int.go
  2. 4 0
      session/int64.go
  3. 4 0
      session/string.go

+ 4 - 0
session/int.go

@@ -1,5 +1,6 @@
 package session
 
+// IsSetInt to check if variable exists
 func (s *Session) IsSetInt(name string) bool {
 	if _, ok := s.varlist.Int[name]; ok {
 		return true
@@ -8,6 +9,7 @@ func (s *Session) IsSetInt(name string) bool {
 	}
 }
 
+// GetInt returns stored variable value or default
 func (s *Session) GetInt(name string, def int) int {
 	if v, ok := s.varlist.Int[name]; ok {
 		return v
@@ -16,6 +18,7 @@ func (s *Session) GetInt(name string, def int) int {
 	}
 }
 
+// SetInt to set variable value
 func (s *Session) SetInt(name string, value int) {
 	isset := s.IsSetInt(name)
 	s.varlist.Int[name] = value
@@ -24,6 +27,7 @@ func (s *Session) SetInt(name string, value int) {
 	}
 }
 
+// DelInt to remove variable
 func (s *Session) DelInt(name string) {
 	if s.IsSetInt(name) {
 		delete(s.varlist.Int, name)

+ 4 - 0
session/int64.go

@@ -1,5 +1,6 @@
 package session
 
+// IsSetInt64 to check if variable exists
 func (s *Session) IsSetInt64(name string) bool {
 	if _, ok := s.varlist.Int64[name]; ok {
 		return true
@@ -8,6 +9,7 @@ func (s *Session) IsSetInt64(name string) bool {
 	}
 }
 
+// GetInt64 returns stored variable value or default
 func (s *Session) GetInt64(name string, def int64) int64 {
 	if v, ok := s.varlist.Int64[name]; ok {
 		return v
@@ -16,6 +18,7 @@ func (s *Session) GetInt64(name string, def int64) int64 {
 	}
 }
 
+// SetInt64 to set variable value
 func (s *Session) SetInt64(name string, value int64) {
 	isset := s.IsSetInt64(name)
 	s.varlist.Int64[name] = value
@@ -24,6 +27,7 @@ func (s *Session) SetInt64(name string, value int64) {
 	}
 }
 
+// DelInt64 to remove variable
 func (s *Session) DelInt64(name string) {
 	if s.IsSetInt64(name) {
 		delete(s.varlist.Int64, name)

+ 4 - 0
session/string.go

@@ -1,5 +1,6 @@
 package session
 
+// IsSetString to check if variable exists
 func (s *Session) IsSetString(name string) bool {
 	if _, ok := s.varlist.String[name]; ok {
 		return true
@@ -8,6 +9,7 @@ func (s *Session) IsSetString(name string) bool {
 	}
 }
 
+// GetString returns stored variable value or default
 func (s *Session) GetString(name string, def string) string {
 	if v, ok := s.varlist.String[name]; ok {
 		return v
@@ -16,6 +18,7 @@ func (s *Session) GetString(name string, def string) string {
 	}
 }
 
+// SetString to set variable value
 func (s *Session) SetString(name string, value string) {
 	isset := s.IsSetString(name)
 	s.varlist.String[name] = value
@@ -24,6 +27,7 @@ func (s *Session) SetString(name string, value string) {
 	}
 }
 
+// DelString to remove variable
 func (s *Session) DelString(name string) {
 	if s.IsSetString(name) {
 		delete(s.varlist.String, name)