arikawa/bot
diamondburned 64ab8c4f30 Bot: Fixed trailing backticks causing out of bound panic 2020-08-29 22:09:58 -07:00
..
extras Bot: Fixed trailing backticks causing out of bound panic 2020-08-29 22:09:58 -07:00
README.md Bot: Partially implemented middlewares 2020-05-14 13:59:17 -07:00
arguments.go Bot: Allow hanging quotes if command has a custom parser 2020-08-11 13:44:32 -07:00
arguments_test.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00
command.go Implement command aliases 2020-05-24 23:08:55 -07:00
ctx.go *: Linting and typo fixes (#134) 2020-07-29 16:58:33 -07:00
ctx_call.go Bot: Allow hanging quotes if command has a custom parser 2020-08-11 13:44:32 -07:00
ctx_plumb_test.go *: Linting and typo fixes (#134) 2020-07-29 16:58:33 -07:00
ctx_test.go *: Linting and typo fixes (#134) 2020-07-29 16:58:33 -07:00
error.go make all error messages lowercase 2020-05-16 23:14:49 +02:00
error_test.go make all error messages lowercase 2020-05-16 23:14:49 +02:00
subcommand.go Bot: Added better middleware documentation 2020-08-11 17:31:29 -07:00
subcommand_test.go Bot: Added more tests and the Help API 2020-05-14 14:04:18 -07:00

README.md

What are the performance impacts of this library?

Not a lot for a Discord bot:

THIS IS OUTDATED. TODO: UPDATE.

# 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