HasLibrary returns whether a specific SingletonLibrary has been configured in the environment.
(libName string)
| 628 | |
| 629 | // HasLibrary returns whether a specific SingletonLibrary has been configured in the environment. |
| 630 | func (e *Env) HasLibrary(libName string) bool { |
| 631 | _, exists := e.libraries[libName] |
| 632 | return exists |
| 633 | } |
| 634 | |
| 635 | // Libraries returns a list of SingletonLibrary that have been configured in the environment. |
| 636 | func (e *Env) Libraries() []string { |
no outgoing calls