| 723 | } |
| 724 | |
| 725 | bool TYandexConfig::Directives::FillArray(TStringBuf key, TVector<TString>& values) const { |
| 726 | const_iterator I = find(key); |
| 727 | |
| 728 | if (I == end()) { |
| 729 | return false; |
| 730 | } |
| 731 | |
| 732 | if ((*I).second != nullptr) { |
| 733 | Split((*I).second, " ,\t\r", values); |
| 734 | return true; |
| 735 | } |
| 736 | |
| 737 | return false; |
| 738 | } |
| 739 | |
| 740 | void TYandexConfig::Directives::Clear() { |
| 741 | if (strict) { |