Home | History | Annotate | Download | only in Support

Lines Matching refs:yin

1131 operator>>(Input &yin, T &docList) {
1133 while ( yin.setCurrentDocument() ) {
1134 yamlize(yin, DocumentListTraits<T>::element(yin, docList, i), true);
1135 if ( yin.error() )
1136 return yin;
1137 yin.nextDocument();
1140 return yin;
1147 operator>>(Input &yin, T &docMap) {
1148 yin.setCurrentDocument();
1149 yamlize(yin, docMap, true);
1150 return yin;
1158 operator>>(Input &yin, T &docSeq) {
1159 if (yin.setCurrentDocument())
1160 yamlize(yin, docSeq, true);
1161 return yin;
1168 operator>>(Input &yin, T &docSeq) {
1170 return yin;