Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Iex pry going step by step?

I want to use IEx.pry to go step by step in my elixir code, like byebug in ruby or debug point in Java. I tried looking into the documentation here : https://github.com/elixir-lang/elixir/blob/4f68c4f10502e0f54a21093bb9a33957e63a9ac4/lib/iex/lib/iex.ex but did not find anything. Could anyone suggest a way to do this ?

like image 556
VoodooChild Avatar asked Oct 18 '15 21:10

VoodooChild


People also ask

How does the IEX API work?

Our API is designed for simplicity. It uses HTTPS REST calls to request and receive back data from IEX Cloud, where every call is made up of the base URL, version, an endpoint-specific path, and a query string: Base URL: Use one of the two base URLs for all REST calls.

How do you do step elution in IEX?

Typical IEX separation using step elution. The UV (protein) and conductivity (salt) traces show the elution of protein peaks and the changes in salt concentration during elution. As shown in Figure 24, step elutions are performed by sequential addition of the same buffer at increasing ionic strengths.

How can I improve the solubility of my IEX?

Working at these lower temperatures may be an alternative solution to using a detergent to improve solubility. The counter-ions (salt ions) used in IEX are almost always Na + for cation exchange and Cl – for anion exchange.

How do I get Started with IEX cloud?

It uses HTTPS REST calls to request and receive back data from IEX Cloud, where every call is made up of the base URL, version, an endpoint-specific path, and a query string: Base URL: Use one of the two base URLs for all REST calls. When first getting started with IEX Cloud, it's best, to begin with, free testing by using our sandbox.


1 Answers

It is not possible as pry is not a debugger. Pry simply allows you to interact with a particular context.

like image 74
José Valim Avatar answered Oct 11 '22 19:10

José Valim