arikawa/bot
diamondburned (Forefront) 9fefba18f7 Bot: Fixed tests to pass with the new Prefixer API 2020-04-06 13:31:27 -07:00
..
extras/arguments API: Added reactions into rate limit parsers 2020-02-07 08:31:10 -08:00
shellwords
README.md
arguments.go
arguments_test.go
ctx.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
ctx_call.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
ctx_plumb_test.go Bot: Fixed tests to pass with the new Prefixer API 2020-04-06 13:31:27 -07:00
ctx_test.go Bot: Fixed tests to pass with the new Prefixer API 2020-04-06 13:31:27 -07:00
error.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
nameflag.go Bot: Flag separator is now a variable 2020-03-03 15:24:08 -08:00
nameflag_test.go
subcommand.go Bot: Added a Prefixer API which breaks the old Prefix string API 2020-04-06 13:27:33 -07:00
subcommand_test.go Bot: Fixed tests to pass with the new Prefixer API 2020-04-06 13:31:27 -07: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