| Author |
Comment/Response |
Peter Pein
|
10/03/12 09:39am
Hi,
did you try 'Through'?
In[2]:= GraphData["McGeeGraph", #] & /@ {"VertexCount",
"EdgeCount"} // AbsoluteTiming
Out[2]= {3.0732000, {24, 36}}
In[3]:= Through[{VertexCount, EdgeCount}[
GraphData["McGeeGraph"]]] // AbsoluteTiming
Out[3]= {0., {24, 36}}
Peter
URL: , |
|