Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CommonMark ¶
type CommonMark struct {
// contains filtered or unexported fields
}
CommonMark is a mark that changes names to common
func (*CommonMark) Change ¶
func (commonMark *CommonMark) Change(string *string) bool
Change implementation
type Mark ¶
type Mark interface {
// Change should change string
// args:
// 1. *string - string; a string to be changed
// return:
// true iff. string was changed
Change(*string) bool
// Update should update mark based on other mark
// args:
// 1. Mark - mark; a mark on which update is based
Update(Mark)
// contains filtered or unexported methods
}
Mark is a type used to change names
Click to show internal directories.
Click to hide internal directories.