<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="294040" data-post-id="294040">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="derek-zhou" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/derek-zhou/120/19943_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  derek-zhou
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="D4no0" data-post="4" data-topic="56941" data-full="true">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/d4no0/48/33624_2.png" class="avatar"> D4no0:</div>
<blockquote>
<p>I think that this is easily solvable by refactoring to small functions and match parameters instead of using case/cond.</p>
</blockquote>
</aside>
<p>The problem of having many small functions is that then you need to name many small functions. As we all know, naming things is one of the <a href="https://blog.frankel.ch/hard-things-computer-science/" rel="noopener nofollow ugc">two hard problems in computer science</a>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294040" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/12">Post #11</a>
	                </div>
	            </div>
              <div id="likers-container-294040" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294040"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #11"></div>
  </section>
</div>
    <div class="postbit" id="294041" data-post-id="294041">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="D4no0" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/D4no0/120/33624_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  D4no0
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Then this should a better vector to focus on fixing instead of introducing early returns into the codebase, because while you will be able to use them correctly, someone else will come and create some abominations that nor you or your teammates will understand.</p>
<p>If you and your team have the time and resources, I would suggest to try to refine what means the clarity of the code at a cultural level in the company, and enforce some good practices to adhere to, much like credo does at the moment, a good place to start is this talk: <a href="https://www.youtube.com/watch?v=6sNmJtoKDCo" rel="noopener nofollow ugc">https://www.youtube.com/watch?v=6sNmJtoKDCo</a></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294041" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/13">Post #12</a>
	                </div>
	            </div>
              <div id="likers-container-294041" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294041"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #12"></div>
  </section>
</div>
    <div class="postbit" id="294043" data-post-id="294043">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="cjbottaro" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/120/1469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  cjbottaro
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>The inheritance problem doesn’t exist in Elixir, but the billions of tiny functions problem does (or can). I feel that <code>with</code> contributes to the latter in a lot of cases and early returns lets me simply have larger functions where I can do my business logic inline without factoring out into 1-use functions.</p>
<p>I feel like this is a style/opinion debate at this point, though I appreciate and agree with your notion of using return to break out of enumerations is not good in a functional language.</p>
<p>I’m still curious about the “nonlocal return” problem. I don’t understand that.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294043" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/14">Post #13</a>
	                </div>
	            </div>
              <div id="likers-container-294043" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294043"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #13"></div>
  </section>
</div>
    <div class="postbit" id="294044" data-post-id="294044">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="D4no0" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/D4no0/120/33624_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  D4no0
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="cjbottaro" data-post="14" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/48/1469_2.png" class="avatar"> cjbottaro:</div>
<blockquote>
<p>The inheritance problem doesn’t exist in Elixir, but the billions of tiny functions problem does (or can).</p>
</blockquote>
</aside>
<p>Yes, but there are other things that exist, especially when coming from OOP and mutable languages, mainly defensive code style (witch can be a huge factor in this problem you are having).</p>
<p>In my 4 years of elixir development I never saw a need for early returns, expect when I was starting with elixir, I was always fighting credo and one of the things that is nice there is that its configured to not allow more than 3 nested conditionals in a function. As for small functions, I absolutely never had the problem of having too many of them, this is especially true when you create the functions locally for the module.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294044" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/15">Post #14</a>
	                </div>
	            </div>
              <div id="likers-container-294044" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294044"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #14"></div>
  </section>
</div>
    <div class="postbit" id="294047" data-post-id="294047">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="al2o3cr" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/al2o3cr/120/3457_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  al2o3cr
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group quote-modified" data-username="cjbottaro" data-post="11" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/48/1469_2.png" class="avatar"> cjbottaro:</div>
<blockquote>
<aside class="quote no-group" data-username="al2o3cr" data-post="10" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/al2o3cr/48/3457_2.png" class="avatar"> al2o3cr:</div>
<blockquote>
<p>in a function called by a function that said <code>returnable</code>, the <code>return</code> function will do a <em>nonlocal</em> return (!)</p>
</blockquote>
</aside>
<p>Can you explain what you mean by this?</p>
</blockquote>
</aside>
<p>Here’s a hypothetical example (hypothetical because I’m guessing how <code>returnable</code> works):</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">def some_function(arg1, arg2) do
  returnable do
    v1 = some_other_function(arg1)
    {:ok, v1}
  end
end

def some_other_function(arg1) do
  2 * yet_another_function(arg1)
end

def yet_another_function(arg1) do
  if arg1 &lt; 123_456 do
    return :nope
  else
    arg1 - 123_456
  end
end
</code></pre>
<p><code>yet_another_function</code> calls <code>return</code> (which I assume calls <code>throw</code>) so the stack is unwound all the way back to <code>some_function</code>, instead of doing an early-return from <code>yet_another_function</code> to <code>some_other_function</code>.</p>
<hr>
<p>There’s an interesting parallel situation in Ruby with <code>break</code> and <code>do</code> blocks. It’s legal to do this:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">some_array.map do |el|
  if el == "nope"
    break "nope"
  else
    el.upcase
  end
end
</code></pre>
<p>The result is that the <code>break</code> statement <em>terminates the map</em> and makes the whole expression return the supplied value (<code>"nope"</code> here), similar to how the <code>returnable</code> <code>return</code> behaves.</p>
<p>However, this code is <em>not allowed</em> by the parser:</p>
<pre data-code-wrap="Ruby"><code class="lang-Ruby">def break_helper(arg)
  break arg
end

some_array.map do |el|
  if el == "nope"
    break_helper(el)
  else
    el.upcase
  end
end
</code></pre>
<p>Attempting to define <code>break_helper</code> produces a SyntaxError:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">SyntaxError: (irb):26: Invalid break
	from (irb)
</code></pre>
<p>The rule is pretty much “you can’t say <code>break</code> unless the parser can see the block it breaks out of” - which would help make <code>returnable</code> clearer for users at the cost of a LOT of additional macro-juggling for the implementer.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294047" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/16">Post #15</a>
	                </div>
	            </div>
              <div id="likers-container-294047" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294047"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #15"></div>
  </section>
</div>
    <div class="postbit" id="294049" data-post-id="294049">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="cjbottaro" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cjbottaro/120/1469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  cjbottaro
                    <span class="op-star" title="Thread Starter">
                      <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                    </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="al2o3cr" data-post="16" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/al2o3cr/48/3457_2.png" class="avatar"> al2o3cr:</div>
<blockquote>
<p><code>yet_another_function</code> calls <code>return</code> (which I assume calls <code>throw</code>) so the stack is unwound all the way back to <code>some_function</code>, instead of doing an early-return from <code>yet_another_function</code> to <code>some_other_function</code>.</p>
</blockquote>
</aside>
<p>Ohhh, I see. And ha, that’s exactly why it’s wrapped up in a little lib… you cannot call <code>return</code> from outside a <code>returnable</code> block.</p>
<p>Further, each returnable block has its own unique id, and a call to <code>return</code> inside that block will throw that unique id. I’m not sure if that’s overkill or not, but ehh, it was a fun little dive into metaprogramming.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294049" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/17">Post #16</a>
	                </div>
	            </div>
              <div id="likers-container-294049" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294049"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #16"></div>
  </section>
</div>
    <div class="postbit" id="294859" data-post-id="294859">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="matt-savvy" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  matt-savvy
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="codeanpeace" data-post="5" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/codeanpeace/48/10278_2.png" class="avatar"> codeanpeace:</div>
<blockquote>
<p>tl;dr in my experience, multiple function heads + guards &gt; early returns</p>
</blockquote>
</aside>
<p>Came here to say exactly this</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="294859" data-batch-url="/posts/batch_likers">
                        4
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/18">Post #17</a>
	                </div>
	            </div>
              <div id="likers-container-294859" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="294859"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #17"></div>
  </section>
</div>
    <div class="postbit" id="295027" data-post-id="295027">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="lpil" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lpil/120/17492_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  lpil
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Gleam</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I’m surprised that there’s not any mention of function combinators such as <code>map</code> and <code>bind/try/then</code>, as is common in other functional languages. They can implement the same patterns as early returns but don’t require any special new language functionality, and they’re trivial for the programmer to extent. They work with pipes, or with a feature like Gleam’s <code>use</code> and OCaml’s <code>let</code> operators it can look very familiar too.</p>
<pre data-code-wrap="gleam"><code class="lang-gleam">pub fn reply(message) {
  use &lt;- guard(is_uppercase(message), return: Error(Rude))
  use &lt;- guard(message == "", return: Error(Quiet))
  use name &lt;- try(get_name())
  Ok("Hello, " &lt;&gt; name)
}
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="295027" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/19">Post #18</a>
	                </div>
	            </div>
              <div id="likers-container-295027" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="295027"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #18"></div>
  </section>
</div>
    <div class="postbit" id="295041" data-post-id="295041">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hst337" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hst337
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="lpil" data-post="19" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lpil/48/17492_2.png" class="avatar"> lpil:</div>
<blockquote>
<p>I’m surprised that there’s not any mention of function combinators such as <code>map</code> and <code>bind/try/then</code>, as is common in other functional languages.</p>
</blockquote>
</aside>
<p>Because in Elixir there are no such combinators. Well, technically there are, but their runtime overhead is too big for anything serious</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="295041" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/20">Post #19</a>
	                </div>
	            </div>
              <div id="likers-container-295041" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="295041"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #19"></div>
  </section>
</div>
    <div class="postbit" id="295042" data-post-id="295042">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="lpil" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/lpil/120/17492_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  lpil
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Gleam</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="hst337" data-post="20" data-topic="56941">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/letter_avatar_proxy/v4/letter/h/41988e/48.png" class="avatar"> hst337:</div>
<blockquote>
<p>Because in Elixir there are no such combinators. Well, technically there are, but their runtime overhead is too big for anything serious</p>
</blockquote>
</aside>
<p>Neither of these are true. The overhead of a function call is very small on the BEAM (if it wasn’t modules of nothing but combinators like <code>Enum</code> wouldn’t be usable), and there are multiple result combinator libraries for Elixir.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="295042" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/what-do-you-think-about-early-returns/56941/21">Post #20</a>
	                </div>
	            </div>
              <div id="likers-container-295042" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="295042"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #20"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/56941/load_more?page=3">Load more posts (30 remaining)</a>
</div></template></turbo-stream>