-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial support for positional args support within
fdl.Config
.
To access positional args: ```python v = config[:] # the full list v = config[-1] # normal index v = config[:3] # slice index ``` To modify positional args: ```python config[:] = [1, 2] # assign to a new list config[1] = 2 ``` PiperOrigin-RevId: 559802927
- Loading branch information
1 parent
673c783
commit 98d6e37
Showing
7 changed files
with
525 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.