arikawa/bot
diamondburned (Forefront) 64dad6b2be Bot: Flag separator is now a variable 2020-03-03 15:24:08 -08:00
..
extras/arguments API: Added reactions into rate limit parsers 2020-02-07 08:31:10 -08:00
shellwords Improved the command parser's error 2020-01-25 23:17:18 -08:00
README.md Bot: trivial fixes 2020-01-28 16:01:39 -08:00
arguments.go Bot: added more tests 2020-02-04 21:19:45 -08:00
arguments_test.go Bot: added more tests 2020-02-04 21:19:45 -08:00
ctx.go Gateway: Added a retry limit 2020-02-29 18:13:58 -08:00
ctx_call.go Bot: trivial fixes 2020-01-28 16:01:39 -08:00
ctx_plumb_test.go Bot: added Plumb flag, methods no longer need arguments be pointers 2020-01-25 21:43:42 -08:00
ctx_test.go Revert "Gateway: State refactored into smaller components" 2020-02-29 18:54:14 -08:00
error.go Fixed the emoji argument 2020-01-24 18:49:33 -08:00
nameflag.go Bot: Flag separator is now a variable 2020-03-03 15:24:08 -08:00
nameflag_test.go Tweaks to tests and CI 2020-01-20 03:15:41 -08:00
subcommand.go Bot: trivial fixes 2020-01-28 16:01:39 -08:00
subcommand_test.go Bot: added more tests 2020-02-04 21:19:45 -08:00

README.md

What are the performance impacts of this library?

Not a lot for a Discord bot:

# Cold functions, or functions that are called once in runtime:
BenchmarkConstructor-8               	  150537	      7617 ns/op
BenchmarkSubcommandConstructor-8     	  155068	      7721 ns/op

# Hot functions, or functions that can be called multiple times:
BenchmarkCall-8                      	 1000000	      1194 ns/op
BenchmarkHelp-8                      	 1751619	       680 ns/op

# Hot functions, but called implicitly on non-message-create events:
BenchmarkReflectChannelID_1Level-8   	10111023	       113 ns/op
BenchmarkReflectChannelID_5Level-8   	 1872080	       686 ns/op