Im using the following Smarty code:
{foreach from=$entries key=i item=topic} {if $topic.topic_style == question}
All the above worked to a certain degree, but not exactly what I wanted. Here's what worked for me. I basically used the index property of foreach
{foreach $products as $product} {if $product@index eq 3} {break} {/if}
{/foreach}