MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / accept_l_list

Function accept_l_list

src/runtime/CL/mlgo/MLGOParser.cpp:377–386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

375}
376
377bool accept_l_list(TokenStream &in)
378{
379 auto tok = in.peek();
380 if (tok.type == TokenType::L_List)
381 {
382 in.take();
383 return true;
384 }
385 return false;
386}
387
388void expect_l_list(TokenStream &in, bool &valid)
389{

Callers 1

expect_l_listFunction · 0.85

Calls 2

peekMethod · 0.80
takeMethod · 0.80

Tested by

no test coverage detected