1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-13 09:12:28 +08:00

update doc

This commit is contained in:
dudaodong
2024-12-04 10:40:18 +08:00
parent e1e15883e9
commit 4595a94b4c
14 changed files with 342 additions and 196 deletions

View File

@@ -42,7 +42,7 @@ import (
<b>Signature:</b>
```go
func Equal(left, right any) bool
func Equal(left, right interface{}) bool
```
<b>Example:</b>
@@ -91,7 +91,7 @@ func main() {
<b>Signature:</b>
```go
func EqualValue(left, right any) bool
func EqualValue(left, right interface{}) bool
```
<b>Example:</b>
@@ -130,7 +130,7 @@ func main() {
<b>Signature:</b>
```go
func LessThan(left, right any) bool
func LessThan(left, right interface{}) bool
```
<b>Example:</b>
@@ -179,7 +179,7 @@ func main() {
<b>Signature:</b>
```go
func GreaterThan(left, right any) bool
func GreaterThan(left, right interface{}) bool
```
<b>Example:</b>
@@ -231,7 +231,7 @@ func main() {
<b>Signature:</b>
```go
func LessOrEqual(left, right any) bool
func LessOrEqual(left, right interface{}) bool
```
<b>Example:</b>
@@ -280,7 +280,7 @@ func main() {
<b>Signature:</b>
```go
func GreaterOrEqual(left, right any) bool
func GreaterOrEqual(left, right interface{}) bool
```
<b>Example:</b>