HasLibrary returns whether a specific SingletonLibrary has been configured in the environment.
(libName string)
| 643 | |
| 644 | // HasLibrary returns whether a specific SingletonLibrary has been configured in the environment. |
| 645 | func (e *Env) HasLibrary(libName string) bool { |
| 646 | _, exists := e.libraries[libName] |
| 647 | return exists |
| 648 | } |
| 649 | |
| 650 | // Libraries returns a list of SingletonLibrary that have been configured in the environment. |
| 651 | func (e *Env) Libraries() []string { |
no outgoing calls