https://github.com/tkf/recalls.jl
https://github.com/tkf/recalls.jl
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tkf/recalls.jl
- Owner: tkf
- License: mit
- Created: 2021-02-07T01:53:49.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T21:24:39.000Z (over 4 years ago)
- Last Synced: 2025-01-20T21:40:47.765Z (12 months ago)
- Language: Julia
- Size: 17.6 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Recalls
## API summary
Recording calls:
* `@recall function f(...) ... end`
* `@recall f(...)`
* `recall()`: replay last record created by `@recall`. To debug last record,
use `@run recall()`.
* `Recalls.CALLS`: a vector of records created by `@recall`.
Recording variables:
* `@note vā vā ... vā`: record variables.
* `Recalls.NOTES`: a vector of records created by `@note`.