diff options
Diffstat (limited to 'docs/content/en/methods/time/After.md')
-rw-r--r-- | docs/content/en/methods/time/After.md | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/content/en/methods/time/After.md b/docs/content/en/methods/time/After.md deleted file mode 100644 index 0aeeb38d8..000000000 --- a/docs/content/en/methods/time/After.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: After -description: Reports whether TIME1 is after TIME2. -categories: [] -keywords: [] -action: - related: - - methods/time/Before - - methods/time/After - - functions/time/AsTime - returnType: bool - signatures: [TIME1.After TIME2] ---- - -```go-html-template -{{ $t1 := time.AsTime "2023-01-01T17:00:00-08:00" }} -{{ $t2 := time.AsTime "2010-01-01T17:00:00-08:00" }} - -{{ $t1.After $t2 }} → true -``` |