Sha256: 73f599a79d2b2a8766f255ef991b0bd56e8f0166667f63846d03b3beac738619
Contents?: true
Size: 597 Bytes
Versions: 4
Compression:
Stored size: 597 Bytes
Contents
<thead> <% if @vectors.is_a? MultiIndex %> <% DaruLite::IRuby::Helpers.tuples_with_colspans(@vectors).each_with_index do |tuple, idx| %> <tr> <% if idx.zero? %> <th colspan="<%= index.width %>" rowspan="<%= @vectors.width %>"></th> <% end %> <% tuple.each do |idx, span| %> <th colspan="<%= span %>"><%= idx %></th> <% end %> </tr> <% end %> <% else %> <tr> <th colspan="<%= index.width %>"></th> <% @vectors.each do |vector| %> <th><%=vector%></th> <% end %> </tr> <% end %> </thead>
Version data entries
4 entries across 4 versions & 1 rubygems